diff --git a/config.json b/config.json index 81c46fb1..91a7236c 100644 --- a/config.json +++ b/config.json @@ -1,7 +1,7 @@ { "name": "streamline-emr", "org": "streamline", - "version": "2.0", + "version": "2.1", "platforms": [ "linux/arm64" ], diff --git a/install.sh b/install.sh index c03da1a0..bc754000 100755 --- a/install.sh +++ b/install.sh @@ -36,9 +36,9 @@ if [ -f ${INSTALL_ROOT}/stop ]; then ${INSTALL_ROOT}/stop fi -# reset data for any v1 installations -if grep -q "^1." ${VERSION_FILE}; then - echo "v1 installation detected - resetting data" +# reset data for any v1 or v2.0 installations +if grep -q "^1." ${VERSION_FILE} || grep -q "^2.0" ${VERSION_FILE}; then + echo "demo installation detected (v$(cat ${VERSION_FILE})) - resetting data" rm -rf ${DATA_ROOT} fi