diff options
author | Varac <varac@leap.se> | 2017-07-19 18:44:17 +0200 |
---|---|---|
committer | Varac <varac@leap.se> | 2017-10-16 13:20:45 +0200 |
commit | a5dba836fc567f6943d9f3032706e92ad59de209 (patch) | |
tree | b465e07c1ff032f30fcaa1375744f2d51917a7b5 | |
parent | d88c47105d804a9166fb865ea6fedf589d054b3c (diff) |
Dont expand variable locally
-rw-r--r-- | .gitlab-ci.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index 9fae8a8..f3e5183 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -38,4 +38,4 @@ deploy: - mkdir -p ~/.ssh - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config' script: - - ssh dashboard@hare.leap.se "export XDG_RUNTIME_DIR=/run/user/$UID; cd ~/dashboard ; git pull; systemctl --user restart dashboard.service" + - ssh dashboard@hare.leap.se 'export XDG_RUNTIME_DIR=/run/user/$UID; cd ~/dashboard ; git pull; systemctl --user restart dashboard.service' |