diff options
author | Ian Baum <ibaum@gitlab.com> | 2018-10-09 11:11:10 -0500 |
---|---|---|
committer | Ian Baum <ibaum@gitlab.com> | 2018-10-23 10:05:57 -0500 |
commit | 41994c2adf5827b31ffe4eff26f3731ff61e1202 (patch) | |
tree | c01a0aaaa002bdf239ca63e411b3b89209b3275f /scripts | |
parent | 69b2e5a94754cde7898bedb988f72d356bb69090 (diff) | |
download | gitlab-ce-41994c2adf5827b31ffe4eff26f3731ff61e1202.tar.gz |
Add omitted indentation fix
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/review_apps/review-apps.sh | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/scripts/review_apps/review-apps.sh b/scripts/review_apps/review-apps.sh index bc42ed2e702..d372bcbdab1 100755 --- a/scripts/review_apps/review-apps.sh +++ b/scripts/review_apps/review-apps.sh @@ -48,10 +48,10 @@ function create_secret() { } function deployExists() { - local namespace="${1}" - local deploy="${2}" - helm status --tiller-namespace "${namespace}" "${deploy}" >/dev/null 2>&1 - return $? + local namespace="${1}" + local deploy="${2}" + helm status --tiller-namespace "${namespace}" "${deploy}" >/dev/null 2>&1 + return $? } function previousDeployFailed() { |