4 echo "The first parameter must be the directory to synch into."
9 chmod -R u+w "$instdir"
13 for curr_file in "$instdir"/*.dll; do
14 base=$(basename "$curr_file")
15 if [ -f "$FEISTY_MEOW_DIR/dll/$base" ]; then
16 cp -f "$FEISTY_MEOW_DIR/dll/$base" "$curr_file"
18 echo "** Error copying $base to $instdir"
23 for curr_file in "$instdir"/*.exe; do
24 base=$(basename "$curr_file")
25 if [ -f "$FEISTY_MEOW_DIR/exe/$base" ]; then
26 cp -f "$FEISTY_MEOW_DIR/exe/$base" "$curr_file"
28 echo "** Error copying $base to $instdir"