#!/bin/bash # Move binary packages built in a chroot to the local repository usage() { echo "Usage: ./move_debs wheezy|jessie" } # Positional argument if [ $# -lt 1 ]; then usage; exit 1; fi DIST=$1 # Validate distribution argument if [ $DIST != "wheezy" ] && [ $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-cran3