first check-in of feisty meow codebase. many things broken still due to recent
[feisty_meow.git] / scripts / archival / pack_msysbins.sh
1 #!/bin/bash
2
3 cd /var/www/hoople.org
4   # change to the hoople directory.
5
6 export TEMPO_FILE="$(mktemp "$TMP/zz_temp_msys_bins.XXXXXX")"
7   # specify where we keep the file until we're ready to move it.
8
9 export XC='--exclude='
10
11 tar -czf $TEMPO_FILE hoople/msys $XC"*.svn/*" $XC"*CVS/*" $XC"*/*.tar.gz" $XC"*/*.zip" 
12   # exclude the file names we never want to see.
13
14 # move the file into its well-known location.
15 mv -v $TEMPO_FILE msys_bins.tar.gz
16