Fix bug in bump_version.sh

Missing quotes around "version" in module.json
This commit is contained in:
Manuel Pégourié-Gonnard 2015-09-04 14:31:16 +02:00
parent 37ff14062e
commit 67e4652bfc

View file

@ -110,7 +110,7 @@ sed -e "s/version:\".\{1,\}/version:\"$VERSION\"/g" < tests/suites/test_suite_ve
mv tmp tests/suites/test_suite_version.data
[ $VERBOSE ] && echo "Bumping version in yotta/data/module.json"
sed -e "s/\"version\": \".\{1,\}\"/version: \"$VERSION\"/g" < yotta/data/module.json > tmp
sed -e "s/\"version\": \".\{1,\}\"/\"version\": \"$VERSION\"/g" < yotta/data/module.json > tmp
mv tmp yotta/data/module.json
[ $VERBOSE ] && echo "Bumping PROJECT_NAME in doxygen/mbedtls.doxyfile and doxygen/input/doc_mainpage.h"