1
0
mirror of synced 2026-03-14 15:36:56 +00:00

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

Fix ./manifests/scripts/bundle.sh path resolution
This commit is contained in:
Aurel Canciu
2021-12-13 14:23:25 +02:00
committed by GitHub

View File

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