X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fbuildor%2Fsynch_to_build.sh;h=36e76550fcf8900314a0cb924b92d0dd2dfdbe90;hb=be45cf74769fb22a6082362b2292e689beada6e6;hp=8d8182c7061c9529bb38135d4ebc2382cb7f04be;hpb=2952ccf47b80174880141a7ecfa122089f349b8d;p=feisty_meow.git diff --git a/scripts/buildor/synch_to_build.sh b/scripts/buildor/synch_to_build.sh index 8d8182c7..36e76550 100644 --- a/scripts/buildor/synch_to_build.sh +++ b/scripts/buildor/synch_to_build.sh @@ -12,8 +12,8 @@ exval=0 for curr_file in "$instdir"/*.dll; do base=$(basename "$curr_file") - if [ -f "$REPOSITORY_DIR/dll/$base" ]; then - cp -f "$REPOSITORY_DIR/dll/$base" "$curr_file" + if [ -f "$FEISTY_MEOW_DIR/dll/$base" ]; then + cp -f "$FEISTY_MEOW_DIR/dll/$base" "$curr_file" if [ $? -ne 0 ]; then echo "** Error copying $base to $instdir" exval=1 @@ -22,8 +22,8 @@ for curr_file in "$instdir"/*.dll; do done for curr_file in "$instdir"/*.exe; do base=$(basename "$curr_file") - if [ -f "$REPOSITORY_DIR/exe/$base" ]; then - cp -f "$REPOSITORY_DIR/exe/$base" "$curr_file" + if [ -f "$FEISTY_MEOW_DIR/exe/$base" ]; then + cp -f "$FEISTY_MEOW_DIR/exe/$base" "$curr_file" if [ $? -ne 0 ]; then echo "** Error copying $base to $instdir" exval=1