X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fbuildor%2Fsynch_to_build.sh;h=10121467568fb461e3cf87527b9552efb1a1f27a;hb=d84cca001d859500e4273888332fea8ed9943f51;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..10121467 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_APEX/dll/$base" ]; then + cp -f "$FEISTY_MEOW_APEX/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_APEX/exe/$base" ]; then + cp -f "$FEISTY_MEOW_APEX/exe/$base" "$curr_file" if [ $? -ne 0 ]; then echo "** Error copying $base to $instdir" exval=1