Merge branch 'master' of feistymeow.org:feisty_meow
[feisty_meow.git] / scripts / buildor / synch_to_build.sh
diff --git a/scripts/buildor/synch_to_build.sh b/scripts/buildor/synch_to_build.sh
deleted file mode 100644 (file)
index 1012146..0000000
+++ /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
-