mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-08 00:37:27 +00:00
Merge pull request #2213 from fluxcd/fix-bundle.sh
Fix ./manifests/scripts/bundle.sh path resolution
This commit is contained in:
commit
e07558f5b7
1 changed files with 2 additions and 2 deletions
|
|
@ -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…
Reference in a new issue