From 9c40eb228e2fe513bc073409eabc1fbeb7fa93cf Mon Sep 17 00:00:00 2001 From: Daan Sprenkels Date: Fri, 29 Mar 2019 15:42:01 +0100 Subject: [PATCH] ci/deploy: Properly escape $'s --- .gitlab-ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index d9e72f0..da41497 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -36,7 +36,7 @@ deploy: systemctl stop MarietjeDjango.service git --git-dir=/srv/MarietjeDjango/.git pull origin marietje-zuid - "$PYTHON" "$MANAGE" migrate --noinput - "$PYTHON" "$MANAGE" collectstatic --noinput + "\$PYTHON" "\$MANAGE" migrate --noinput + "\$PYTHON" "\$MANAGE" collectstatic --noinput systemctl start MarietjeDjango.service EOF