File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 9999 diff() {
100100 if ! [[ -v CI ]]; then
101101 kubectl diff --server-side=true --field-manager="std-action-in-ci" \
102- --filename $manifest_path --recursive;
102+ --filename " $manifest_path" --recursive;
103103 else
104104 kubectl diff --server-side=true --field-manager="std-action-$(whoami)" \
105- --filename $manifest_path --recursive;
105+ --filename " $manifest_path" --recursive;
106106 fi
107107 }
108108
109109 run() {
110110 if ! [[ -v CI ]]; then
111111 kubectl apply --server-side=true --field-manager="std-action-in-ci" \
112- --filename $manifest_path --recursive;
112+ --filename " $manifest_path" --recursive;
113113 else
114114 kubectl apply --server-side=true --field-manager="std-action-$(whoami)" \
115- --filename $manifest_path --recursive;
115+ --filename " $manifest_path" --recursive;
116116 fi
117117 }
118118
You can’t perform that action at this time.
0 commit comments