Fix PSA sim test awk script by removing extra $

Signed-off-by: Tom Cosgrove <tom.cosgrove@arm.com>
This commit is contained in:
Tom Cosgrove 2024-05-27 23:55:43 +03:00
parent 0a57a253cc
commit bdc4c2d750

View File

@ -17,7 +17,7 @@ function clean_run() {
rm -f psa_notify_* rm -f psa_notify_*
pkill psa_partition || true pkill psa_partition || true
pkill psa_client || true pkill psa_client || true
ipcs | grep q | awk '{ printf " -q " $$2 }' | xargs ipcrm > /dev/null 2>&1 || true ipcs | grep q | awk '{ printf " -q " $2 }' | xargs ipcrm > /dev/null 2>&1 || true
} }
# The server creates some local files when it starts up so we can wait for this # The server creates some local files when it starts up so we can wait for this