deploy.sh: Fix calculation error.

This commit is contained in:
Fabian Schlenz 2019-11-30 00:14:02 +01:00
parent 4a3e79f02e
commit bcf7625285
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ done <<< "$vers"
read -p "Version to generate: " VERSION
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
rm include/config.h.bak include/config.sample.h.bak