Skip to content

Commit 95b3280

Browse files
committed
fix: heal kubectl deploy action shellcheck
1 parent c886d1e commit 95b3280

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

src/std/fwlib/blockTypes/kubectl.nix

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -99,20 +99,20 @@ in
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

0 commit comments

Comments
 (0)