Skip to content

Commit 8540592

Browse files
authored
Merge pull request #5099 from bkreitch/fix-misplaced-quotes
fix misplaced quotes
2 parents f42a17d + 570bc81 commit 8540592

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

cmd/flux/build_kustomization.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -53,12 +53,12 @@ flux build kustomization my-app --path ./path/to/local/manifests \
5353
# Exclude files by providing a comma separated list of entries that follow the .gitignore pattern fromat.
5454
flux build kustomization my-app --path ./path/to/local/manifests \
5555
--kustomization-file ./path/to/local/my-app.yaml \
56-
--ignore-paths "/to_ignore/**/*.yaml,ignore.yaml
56+
--ignore-paths "/to_ignore/**/*.yaml,ignore.yaml"
5757
5858
# Run recursively on all encountered Kustomizations
5959
flux build kustomization my-app --path ./path/to/local/manifests \
6060
--recursive \
61-
--local-sources GitRepository/flux-system/my-repo=./path/to/local/git"`,
61+
--local-sources GitRepository/flux-system/my-repo=./path/to/local/git`,
6262
ValidArgsFunction: resourceNamesCompletionFunc(kustomizev1.GroupVersion.WithKind(kustomizev1.KustomizationKind)),
6363
RunE: buildKsCmdRun,
6464
}

cmd/flux/diff_kustomization.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -44,12 +44,12 @@ flux diff kustomization my-app --path ./path/to/local/manifests \
4444
# Exclude files by providing a comma separated list of entries that follow the .gitignore pattern fromat.
4545
flux diff kustomization my-app --path ./path/to/local/manifests \
4646
--kustomization-file ./path/to/local/my-app.yaml \
47-
--ignore-paths "/to_ignore/**/*.yaml,ignore.yaml
47+
--ignore-paths "/to_ignore/**/*.yaml,ignore.yaml"
4848
4949
# Run recursively on all encountered Kustomizations
5050
flux diff kustomization my-app --path ./path/to/local/manifests \
5151
--recursive \
52-
--local-sources GitRepository/flux-system/my-repo=./path/to/local/git"`,
52+
--local-sources GitRepository/flux-system/my-repo=./path/to/local/git`,
5353
ValidArgsFunction: resourceNamesCompletionFunc(kustomizev1.GroupVersion.WithKind(kustomizev1.KustomizationKind)),
5454
RunE: diffKsCmdRun,
5555
}

0 commit comments

Comments
 (0)