From f62e2be533f0fb38bbec46212163c0b88b104ba1 Mon Sep 17 00:00:00 2001 From: Chris Koeritz Date: Wed, 30 Jan 2019 13:29:41 -0500 Subject: [PATCH] clarified role of parameters in script --- scripts/archival/comparator.sh | 16 ++++++++-------- 1 file changed, 8 insertions(+), 8 deletions(-) diff --git a/scripts/archival/comparator.sh b/scripts/archival/comparator.sh index 90ad0918..268e99ef 100644 --- a/scripts/archival/comparator.sh +++ b/scripts/archival/comparator.sh @@ -2,18 +2,18 @@ # compares this machine's local archives against an exemplar set. -target="$1"; shift -if [ -z "$target" ]; then - target=wildmutt - #target=curie +remote_place="$1"; shift +if [ -z "$remote_place" ]; then + remote_place=wildmutt + #remote_place=curie fi -where="$1"; shift -if [ -z "$where" ]; then - where=/z +local_place="$1"; shift +if [ -z "$local_place" ]; then + local_place=/z fi source "$FEISTY_MEOW_SCRIPTS/core/launch_feisty_meow.sh" source "$FEISTY_MEOW_SCRIPTS/archival/general_updater.sh" -uber_archive_comparator $target $where +uber_archive_comparator $remote_place $local_place -- 2.34.1