We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe2ba0e commit fe0ce65Copy full SHA for fe0ce65
1 file changed
examples/downstream/modules/downstream/applyK8sManifest.sh
@@ -15,9 +15,9 @@
15
16
17
TMPFILE=$(mktemp)
18
-cat > $TMPFILE
19
-if [ -z "$(cat $TMPFILE)" ]; then echo "no contents supplied, failing..."; exit 1; fi
+cat > "$TMPFILE"
+if [ -z "$(cat "$TMPFILE")" ]; then echo "no contents supplied, failing..."; exit 1; fi
20
21
-kubectl apply -f $TMPFILE
+kubectl apply -f "$TMPFILE"
22
23
-rm -f $TMPFILE
+rm -f "$TMPFILE"
0 commit comments