From def47000c9b067e0e8e600aad82e770d1f3c8b8b Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sun, 7 May 2017 09:19:13 +0200 Subject: [PATCH] Fix version bug --- build-scripts/homeassistant/create_homeassistant.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build-scripts/homeassistant/create_homeassistant.sh b/build-scripts/homeassistant/create_homeassistant.sh index fa93000..17b69b7 100755 --- a/build-scripts/homeassistant/create_homeassistant.sh +++ b/build-scripts/homeassistant/create_homeassistant.sh @@ -117,7 +117,7 @@ echo "[INFO] load homeassistant" cp ../../homeassistant/Dockerfile "$WORKSPACE/Dockerfile" sed -i "s/%%BASE_IMAGE%%/${BASE_IMAGE}/g" "$WORKSPACE/Dockerfile" -sed -i "s/%%HASS_VERSION%%/${DOCKER_TAG}/g" "$WORKSPACE/Dockerfile" +sed -i "s/%%VERSION%%/${DOCKER_TAG}/g" "$WORKSPACE/Dockerfile" git clone https://github.com/home-assistant/home-assistant "$HASS_GIT" cd "$HASS_GIT" && git checkout "$DOCKER_TAG"