diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2020-04-25 00:05:41 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2020-04-25 00:05:41 +0200 |
commit | 7e750f644cbbc9ad35cbdc4f4909b52faede853d (patch) | |
tree | 8cc7a5f584e574432de5730e652ffe535e698ab6 /move_debs | |
parent | a6ec2095b8940f9f9ce22f0641e743ce752c5725 (diff) |
Changes for backports of R 4.0.0 to bullseye and buster
Diffstat (limited to 'move_debs')
-rwxr-xr-x | move_debs | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -4,7 +4,7 @@ usage() { -echo "Usage: ./move_debs stretch|buster" +echo "Usage: ./move_debs stretch|buster|bullseye" } # Positional argument @@ -12,7 +12,7 @@ if [ $# -lt 1 ]; then usage; exit 1; fi DIST=$1 # Validate distribution argument -if [ $DIST != "stretch" ] && [ $DIST != "buster" ]; then usage; exit 1; fi +if [ $DIST != "stretch" ] && [ $DIST != "buster" ] && [ $DIST != "bullseye" ]; then usage; exit 1; fi sudo chown jranke $DIST/*${DIST}cran*_amd64.{deb,build} -mv -v $DIST/*${DIST}cran*_amd64.{deb,build} /home/jranke/git/uni/website/www/ranke/r-cran/$DIST-cran35 +mv -v $DIST/*${DIST}cran*_amd64.{deb,build} /home/jranke/git/uni/website/www/ranke/r-cran/$DIST-cran40 |