Skip to content
This repository was archived by the owner on Oct 12, 2024. It is now read-only.

Commit 539b137

Browse files
Fixes missing escape
1 parent 90abfa9 commit 539b137

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

applier/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ include ./provider.mk
1111

1212
test-cleanup:
1313
docker stop applier-nats || true
14-
ps -ax | grep applier | grep -i -v make | awk '{print $1}' | xargs kill -9 || true
14+
ps -ax | grep applier | grep -i -v make | awk '{print $$1}' | xargs kill -9 || true
1515
kubectl delete svc -l wasmcloud.dev/test || true
1616

1717
test:: build test-cleanup

0 commit comments

Comments
 (0)