diff options
Diffstat (limited to 'cc3200/appsign.sh')
-rw-r--r-- | cc3200/appsign.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/cc3200/appsign.sh b/cc3200/appsign.sh index d72498a287..39db708b55 100644 --- a/cc3200/appsign.sh +++ b/cc3200/appsign.sh @@ -16,13 +16,13 @@ BUILD=build/${BOARD}/${BTYPE} echo -n `md5sum --binary $BUILD/application.bin | awk '{ print $1 }'` > __md5hash.bin # Concatenate it with the application binary -cat $BUILD/application.bin __md5hash.bin > $BUILD/MCUIMG.BIN +cat $BUILD/application.bin __md5hash.bin > $BUILD/mcuimg.bin RET=$? # Remove the tmp files rm -f __md5hash.bin -# Remove hte unsigned binary +# Remove the unsigned binary rm -f $BUILD/application.bin exit $RET |