fixed folder issue
authorChris Koeritz <fred@gruntose.com>
Thu, 2 Nov 2017 13:07:05 +0000 (09:07 -0400)
committerChris Koeritz <fred@gruntose.com>
Thu, 2 Nov 2017 13:07:05 +0000 (09:07 -0400)
was trying to assume feisty is always in $HOME/feisty_meow which only used to be the case and no longer is.

scripts/archival/snarf_feisty_meow.pl

index 9624e37a9a0cd40d70e4feb88ae5b9f9927cd639..71d1049a9828b0de8b865aacd170feffb589fcf6 100644 (file)
@@ -17,7 +17,7 @@
 
 require "shared_snarfer.pl";
 
-use Env qw(HOME);
+use Env qw(FEISTY_MEOW_APEX);
 
 &initialize_snarfer;  # let the snarfer hook us in.
 
@@ -32,7 +32,7 @@ local($snarf_file) = &snarf_name($snarf_file_base, $number);
 &backup_number("aa_backup", $snarf_file_base, $number);
 
 # the top directory where everything we're grabbing lives.
-local($root) = &canonicalize("$HOME/feisty_meow");
+local($root) = &canonicalize("$FEISTY_MEOW_APEX/feisty_meow");
 
 # grab the top level stuff.
 &backup_files($snarf_file_base, $number, $root, ".", ("*.txt", "make*", ".gitignore"));