Bump config version from 0.3 to 0.4

This commit is contained in:
Andre
2021-11-09 23:34:31 +01:00
parent 50622b8d13
commit 2d325d5872
2 changed files with 2 additions and 2 deletions

View File

@ -88,7 +88,7 @@ function load_config() {
# Verify that necessary configuration values are set and they are valid
function check_config() {
local expected_config_version
expected_config_version="0.3"
expected_config_version="0.4"
if [[ "$CONFIG_FILE_VERSION" != "$expected_config_version" ]]; then
>&2 echo "Invalid or old config version $CONFIG_FILE_VERSION, expected $expected_config_version. Please update your configuration file from the default."

View File

@ -68,4 +68,4 @@ function customize_image() {
# Used to version the configuration. If breaking changes occur, manual
# updates to this file from the default may be necessary.
export CONFIG_FILE_VERSION="0.3"
export CONFIG_FILE_VERSION="0.4"