From 8d83cc96c21eac971e9379b246a19f6c740c5b43 Mon Sep 17 00:00:00 2001 From: Fred Hamster Date: Sun, 20 Nov 2022 10:45:31 -0500 Subject: [PATCH] can't check for presence of remote dirs; commented --- .../fred/scripts/games/save_f76_pics.sh | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/scripts/customize/fred/scripts/games/save_f76_pics.sh b/scripts/customize/fred/scripts/games/save_f76_pics.sh index 01c5ecf4..aa2ab505 100644 --- a/scripts/customize/fred/scripts/games/save_f76_pics.sh +++ b/scripts/customize/fred/scripts/games/save_f76_pics.sh @@ -17,20 +17,20 @@ else exit 1 fi -src_dir="fred@orpheus:data/wind_goods/My Games/Fallout 76/Photos/${identity}" +src_dir="fred@orpheus:./data/wind_goods/My Games/Fallout 76/Photos/${identity}" dest_dir="fred@curie:/z/walrus/media/pictures/metaverse/fallout_76/${character}" #echo "src is: '$src_dir'" #echo "dest is: '$dest_dir'" -if [ ! -d "$src_dir" ]; then - echo "Could not find the source directory: $src_dir" - exit 1 -fi -if [ ! -d "$dest_dir" ]; then - echo "Could not find the destination directory: $dest_dir" - exit 1 -fi +#if [ ! -d "$src_dir" ]; then +# echo "Could not find the source directory: $src_dir" +# exit 1 +#fi +#if [ ! -d "$dest_dir" ]; then +# echo "Could not find the destination directory: $dest_dir" +# exit 1 +#fi netcp "$src_dir"/*[0-9].png "$dest_dir"/ -- 2.34.1