X-Git-Url: https://feistymeow.org/gitweb/?a=blobdiff_plain;f=scripts%2Fbuildor%2Fsynch_to_build.sh;fp=scripts%2Fbuildor%2Fsynch_to_build.sh;h=0000000000000000000000000000000000000000;hb=7b39f7e279005c8466ef508220a532ce2aa4abf8;hp=10121467568fb461e3cf87527b9552efb1a1f27a;hpb=3fbd372b35b15a19fb171d5ae34294ff7b1e6485;p=feisty_meow.git diff --git a/scripts/buildor/synch_to_build.sh b/scripts/buildor/synch_to_build.sh deleted file mode 100644 index 10121467..00000000 --- a/scripts/buildor/synch_to_build.sh +++ /dev/null @@ -1,35 +0,0 @@ -#!/bin/bash - -if [ $# -lt 1 ]; then - echo "The first parameter must be the directory to synch into." - exit 1 -fi -instdir="$1" - -chmod -R u+w "$instdir" - -exval=0 - -for curr_file in "$instdir"/*.dll; do - base=$(basename "$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 - fi - fi -done -for curr_file in "$instdir"/*.exe; do - base=$(basename "$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 - fi - fi -done - -exit $exval -