diff options
author | Johannes Ranke <jranke@uni-bremen.de> | 2019-04-29 09:29:14 +0200 |
---|---|---|
committer | Johannes Ranke <jranke@uni-bremen.de> | 2019-04-29 09:29:14 +0200 |
commit | 4ae71bbfbcfedeb0b376255266004b6e1ab259a7 (patch) | |
tree | 948c296086c6a98e3bbb3b50a80bbd09262626a6 /move_debs | |
parent | b58740b0fa96aa46d692077f42295857148230d0 (diff) |
Discontinue jessie, support buster
Diffstat (limited to 'move_debs')
-rwxr-xr-x | move_debs | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -4,7 +4,7 @@ usage() { -echo "Usage: ./move_debs stretch|jessie" +echo "Usage: ./move_debs stretch|buster" } # Positional argument @@ -12,7 +12,7 @@ if [ $# -lt 1 ]; then usage; exit 1; fi DIST=$1 # Validate distribution argument -if [ $DIST != "stretch" ] && [ $DIST != "jessie" ]; then usage; exit 1; fi +if [ $DIST != "stretch" ] && [ $DIST != "buster" ]; 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 |