fixing generated deps interference with clean
[feisty_meow.git] / scripts / archival / backup_trac.sh
index 950c7c9b84e23e852e76566cca956f44a6b1a546..e1588121a7dde4d606e29776f5335e80ea2e23d5 100755 (executable)
@@ -3,14 +3,16 @@
 # backs up our trac repository.
 
 trac_path="$1"; shift
+archive_path="$1"; shift
 
-if [ -z "$trac_path" ]; then
-  echo This script needs the path to the trac database.
+if [ -z "$trac_path" -o -z "$archive_path" ]; then
+  echo This script needs the path to the trac database as the first parameter
+  echo and the path to the storage directory as the second parameter.
   exit 1
 fi
 
 sep='_'
 
-tar -czf /z/stuffing/archives/trac_bkup_$(date +"%Y$sep%m$sep%d$sep%H%M$sep%S" | tr -d '/\n/').tar.gz "$trac_path" &>$TMP/zz_backup_trac.log
+tar -czf "${archive_path}/trac_bkup_$(date +"%Y$sep%m$sep%d$sep%H%M$sep%S" | tr -d '/\n/').tar.gz" "$trac_path" &>$TMP/zz_backup_trac.log