summaryrefslogtreecommitdiff
path: root/move_debs
blob: 243b91602c1f16b7a3f4aa53cfdd224f245f39b0 (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 stretch|jessie"
}

# Positional argument
if [ $# -lt 1 ]; then usage; exit 1; fi
DIST=$1

# Validate distribution argument
if [ $DIST != "stretch" ] && [ $DIST != "jessie" ]; then usage; exit 1; fi

chown jranke $DIST/*${DIST}cran*_amd64.deb
mv -v $DIST/*${DIST}cran*_amd64.deb /home/jranke/svn/website/www/ranke/r-cran/$DIST-cran34

Contact - Imprint