blob: 18ad34dfc44fd5ebac6d7c57f49c7b1be9d47bb3 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
#!/bin/bash
# Move binary packages built in a chroot to the local repository
usage()
{
echo "Usage: ./move_debs bullseye|bookworm"
}
# Positional argument
if [ $# -lt 1 ]; then usage; exit 1; fi
DIST=$1
# Validate distribution argument
if [ $DIST != "bookworm" ] && [ $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-bremen/website/www/ranke/r-cran/$DIST-cran40
|