diff options
-rwxr-xr-x[-rw-r--r--] | files/clever-wait-deploy.sh | 8 | ||||
-rw-r--r-- | tasks/deploy.yml | 2 |
2 files changed, 8 insertions, 2 deletions
diff --git a/files/clever-wait-deploy.sh b/files/clever-wait-deploy.sh index c955f6a..e0bbcf1 100644..100755 --- a/files/clever-wait-deploy.sh +++ b/files/clever-wait-deploy.sh | |||
@@ -47,4 +47,10 @@ function check { | |||
47 | deployed "$commit" | 47 | deployed "$commit" |
48 | } | 48 | } |
49 | 49 | ||
50 | check "$(git rev-parse HEAD)" | 50 | function getHeadRev { |
51 | local chdir="$1/.git" | ||
52 | |||
53 | git --git-dir="$chdir" rev-parse HEAD | ||
54 | } | ||
55 | |||
56 | check "$(getHeadRev "$@")" | ||
diff --git a/tasks/deploy.yml b/tasks/deploy.yml index ca8bf15..84ebe73 100644 --- a/tasks/deploy.yml +++ b/tasks/deploy.yml | |||
@@ -52,7 +52,7 @@ | |||
52 | - skip_ansible_lint | 52 | - skip_ansible_lint |
53 | 53 | ||
54 | - name: Watch deployment status | 54 | - name: Watch deployment status |
55 | command: clever-wait-deploy.sh | 55 | command: "clever-wait-deploy.sh '{{ clever_app_root }}'" |
56 | async: 900 | 56 | async: 900 |
57 | poll: 0 | 57 | poll: 0 |
58 | register: long_command | 58 | register: long_command |