Index: scripts/run.sh =================================================================== diff -u -r143bb84e7a23e5dbc9fa5bd29e8aa0407b9a7109 -r3e64d98e243484505a44d99b13826097cb6b01eb --- scripts/run.sh (.../run.sh) (revision 143bb84e7a23e5dbc9fa5bd29e8aa0407b9a7109) +++ scripts/run.sh (.../run.sh) (revision 3e64d98e243484505a44d99b13826097cb6b01eb) @@ -35,7 +35,7 @@ POSTMSG_RTC="RTC passed" POSTMSG_WIFI="WiFi passed" POSTMSG_BLUETOOTH="Bluetooth passed" -POSTMSG_APPSHA="App shasum passed" +POSTMSG_SHASUM="App shasum passed" # cleanup the POST log file echo "Start: $(currDate)" > $POSTLOG @@ -136,15 +136,15 @@ fi #check the denali applicatoin checksum -#md5sum -b --tag denali >> denali +#sha256sum -b --tag denali >> denali SHA_ACT=$(tail -c 83 ./denali | cut -c19-82) SHA_EXP=$(head -c -83 ./denali | sha256sum -b --tag | cut -c14-77) if [ "$SHA_ACT" == "$SHA_EXP" ]; then - echo $POSTMSG_APPSHA >> $POSTLOG + echo $POSTMSG_SHASUM >> $POSTLOG else - echo "Application Checksum Failed." - # Disabled for now, it needs to be setup on bamboo server. - # exit 100 + echo "Application ShaSum Failed" + # Disabled for now, it needs setup on the Bamboo server. + # exit 100 fi