# HG changeset patch # User Rob Landley # Date 1256838477 18000 # Node ID 858297fa5ad0b99e1904b2114832e4d3e0e707e3 # Parent ef007d564aadde983b34c88de77de0c3d1b43082 setup-native-static-build.sh shouldn't blank cron-temp if hdc.sqf already there. diff -r ef007d564aad -r 858297fa5ad0 sources/more/setup-native-static-build.sh --- a/sources/more/setup-native-static-build.sh Thu Oct 29 12:46:58 2009 -0500 +++ b/sources/more/setup-native-static-build.sh Thu Oct 29 12:47:57 2009 -0500 @@ -10,6 +10,12 @@ exit 1 fi +if [ -e "$1/hdc.sqf" ] +then + echo "$1/hdc.sqf" exists + exit 0 +fi + # Set up working directories WORK="$1"