Compare commits

3 Commits

Author SHA1 Message Date
fabian bcf7625285 deploy.sh: Fix calculation error. 2019-11-30 00:14:02 +01:00
fabian 4a3e79f02e Added empty (for now) update.manifest. 2019-11-30 00:12:02 +01:00
fabian 68e1073858 Deploy.sh: Don't show the commands being executed. 2019-11-30 00:09:36 +01:00
2 changed files with 6 additions and 3 deletions
+3
View File
@@ -0,0 +1,3 @@
VERSION=1
IMAGE_PATH=https://files.schle.nz/esmp3/firmware.bin
IMAGE_MD5=00000000000000000000000000000000
+3 -3
View File
@@ -1,6 +1,6 @@
#!/usr/bin/env bash #!/usr/bin/env bash
set -x #set -x
#set -e set -e
if ! git diff-index --quiet HEAD ; then if ! git diff-index --quiet HEAD ; then
echo "Git isn't clean. Cant deploy." echo "Git isn't clean. Cant deploy."
@@ -27,7 +27,7 @@ done <<< "$vers"
read -p "Version to generate: " VERSION read -p "Version to generate: " VERSION
OTA_VERSION=`grep "VERSION=" bin/update.manifest | cut -d"=" -f2` OTA_VERSION=`grep "VERSION=" bin/update.manifest | cut -d"=" -f2`
OTA_VERSION=$(( "$OTA_VERSION" + 1 )) OTA_VERSION=$(( $OTA_VERSION + 1 ))
sed -i.bak "s/#define OTA_VERSION .*/#define OTA_VERSION $OTA_VERSION/" include/config.h include/config.sample.h sed -i.bak "s/#define OTA_VERSION .*/#define OTA_VERSION $OTA_VERSION/" include/config.h include/config.sample.h
rm include/config.h.bak include/config.sample.h.bak rm include/config.h.bak include/config.sample.h.bak