diff options
author | Paul Bonaud <paul.bonaud@fretlink.com> | 2018-11-30 16:53:40 +0100 |
---|---|---|
committer | Paul Bonaud <paul.bonaud@fretlink.com> | 2018-11-30 16:54:00 +0100 |
commit | 4483bb9cdc1031a85a3a1fc1ea186a7390c807ba (patch) | |
tree | a51d68a0d2fc5470b307d34800823f1ab87259dd /files/clever-wait-deploy.sh | |
parent | 245e7912bf31c7d55541f1be45b3cffc11d7f3b3 (diff) | |
download | ansible-clever-4483bb9cdc1031a85a3a1fc1ea186a7390c807ba.tar.gz ansible-clever-4483bb9cdc1031a85a3a1fc1ea186a7390c807ba.tar.zst ansible-clever-4483bb9cdc1031a85a3a1fc1ea186a7390c807ba.zip |
fix(deploy): Yet again a missing chdir to execute from app root
Diffstat (limited to 'files/clever-wait-deploy.sh')
-rwxr-xr-x | files/clever-wait-deploy.sh | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/files/clever-wait-deploy.sh b/files/clever-wait-deploy.sh index e0bbcf1..b911069 100755 --- a/files/clever-wait-deploy.sh +++ b/files/clever-wait-deploy.sh | |||
@@ -48,9 +48,7 @@ function check { | |||
48 | } | 48 | } |
49 | 49 | ||
50 | function getHeadRev { | 50 | function getHeadRev { |
51 | local chdir="$1/.git" | 51 | git rev-parse HEAD |
52 | |||
53 | git --git-dir="$chdir" rev-parse HEAD | ||
54 | } | 52 | } |
55 | 53 | ||
56 | check "$(getHeadRev "$@")" | 54 | check "$(getHeadRev)" |