Skip to content
This repository has been archived by the owner on Nov 1, 2022. It is now read-only.

Commit

Permalink
Simplify kustomize directory removal
Browse files Browse the repository at this point in the history
  • Loading branch information
2opremio committed Nov 6, 2019
1 parent f6f37bb commit 5015abc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/e2e/lib/install.bash
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ fluxctl_install_cmd="fluxctl install --git-url=ssh://git@gitsrv/git-server/repos
function install_flux_with_fluxctl() {
local kustomtmp
kustomtmp="$(mktemp -d)"
defer "if [ -d \"${kustomtmp}\" ]; then rm -r \"${kustomtmp}\"; fi"
defer "rm -rf \"${kustomtmp}\""
mkdir "${kustomtmp}/base"
# This generates the base manifests, which we'll then patch with a kustomization
echo ">>> writing base configuration to ${kustomtmp}/base" >&3
Expand Down

0 comments on commit 5015abc

Please sign in to comment.