Merge pull request #2213 from fluxcd/fix-bundle.sh

Fix ./manifests/scripts/bundle.sh path resolution
pull/2223/head
Aurel Canciu 3 years ago committed by GitHub
commit e07558f5b7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -16,8 +16,8 @@
set -e
IN_PATH=${1:-"$(git rev-parse --show-toplevel)/manifests"}
OUT_PATH=${2:-"$(git rev-parse --show-toplevel)/cmd/flux/manifests"}
IN_PATH=${1:-"$(realpath $(dirname "${BASH_SOURCE[0]}")/../..)/manifests"}
OUT_PATH=${2:-"$(realpath $(dirname "${BASH_SOURCE[0]}")/../..)/cmd/flux/manifests"}
TAR=${3}
info() {

Loading…
Cancel
Save