diff options
-rw-r--r-- | cc3200/appsign.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/cc3200/appsign.sh b/cc3200/appsign.sh index 16024e8699..842e83cf97 100644 --- a/cc3200/appsign.sh +++ b/cc3200/appsign.sh @@ -5,7 +5,7 @@ BUILD=build/$1 # Generate the MD5 hash -echo -n md5sum --binary $BUILD/application.bin | awk '{ print $1 }' > __md5hash.bin +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 |