diff options
author | bnewbold <bnewbold@robocracy.org> | 2010-06-03 11:52:53 -0400 |
---|---|---|
committer | bnewbold <bnewbold@robocracy.org> | 2010-06-04 19:58:36 -0400 |
commit | 7824df10c4f841f8dfbc7856efc7365ce7b43df2 (patch) | |
tree | 81031a8b4218ad0745854019d5b66ecdba867901 | |
parent | 3b11433f360c62419df9c4bf61bcaf1b69d06ec7 (diff) | |
download | librambutan-7824df10c4f841f8dfbc7856efc7365ce7b43df2.tar.gz librambutan-7824df10c4f841f8dfbc7856efc7365ce7b43df2.zip |
fixed copy-to-ide linker stuff
-rwxr-xr-x | support/scripts/copy-to-ide | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/support/scripts/copy-to-ide b/support/scripts/copy-to-ide index 571936e..011cca7 100755 --- a/support/scripts/copy-to-ide +++ b/support/scripts/copy-to-ide @@ -29,9 +29,10 @@ FILES="LICENSE echo "First make sure DEST exists: $DEST" -if !(test -d $DEST/lanchon-stm32) +if !(test -d $DEST) then - mkdir $DEST/lanchon-stm32 + echo "Nope! Make sure you're doing this right?" + exit -1 fi echo "Then delete the old files..." |