ccollect/release.sh

20 lines
377 B
Bash
Raw Normal View History

if [ $# -ne 1 ]; then
echo "$0: ccollect dir"
exit 23
fi
2005-12-08 13:18:07 +00:00
NAME=$1
TARNAME=${NAME}.tar.bz2
2005-12-08 13:18:07 +00:00
DHOST=nico@creme.schottelius.org
DDIR=www/org/schottelius/linux/ccollect/
DESTINATION="$DHOST:$DDIR"
tar cvfj "$TARNAME" \
2005-12-08 13:18:07 +00:00
--exclude=.git \
--exclude="conf/sources/*/destination/*" "$NAME"
scp "${TARNAME}" "$DESTINATION"
ssh "$DHOST" "( cd $DDIR; tar xfj \"$TARNAME\" )"