summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn R Barker <john@johnrbarker.com>2016-10-19 20:57:50 +0100
committerGitHub <noreply@github.com>2016-10-19 20:57:50 +0100
commit7a7ff3ebcacacbdbc71d3a89f3411734ee86ec0f (patch)
tree3301de965575ca234b84fab94badf6cb39d05702
parent2d459b797f954ea9239e49bb0360f29be91eb3d3 (diff)
downloadansible-modules-core-7a7ff3ebcacacbdbc71d3a89f3411734ee86ec0f.tar.gz
Typo in cleanup (#5322)
-rwxr-xr-xtest/utils/shippable/sanity.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/utils/shippable/sanity.sh b/test/utils/shippable/sanity.sh
index 84dab4c5..3b754afa 100755
--- a/test/utils/shippable/sanity.sh
+++ b/test/utils/shippable/sanity.sh
@@ -8,7 +8,7 @@ cd "${source_root}"
# FIXME REPOMERGE: No need to checkout ansible
build_dir=$(mktemp -d)
-trap 'rm -rf "{$build_dir}"' EXIT
+trap 'rm -rf "${build_dir}"' EXIT
git clone "https://github.com/ansible/ansible.git" "${build_dir}" --recursive
source "${build_dir}/hacking/env-setup"