mirror of
https://github.com/fluxcd/flux2.git
synced 2026-02-21 07:01:47 +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
|
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() {
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue