remove pid file

This commit is contained in:
Shreyas Goenka 2025-02-05 15:32:19 +01:00
parent fd6b129582
commit 73fac825ce
No known key found for this signature in database
GPG Key ID: 92A07DF49CCB0622
2 changed files with 6 additions and 0 deletions

View File

@ -10,3 +10,6 @@ echo "waiting for telemetry process to finish"
# Wait for the child telemetry process to finish
wait_file ./telemetry.pid
wait_pid $(cat ./telemetry.pid)
# cleanup the pid file
rm -f ./telemetry.pid

View File

@ -8,3 +8,6 @@ echo "waiting for telemetry process to finish"
# Wait for the child telemetry process to finish
wait_file ./telemetry.pid
wait_pid $(cat ./telemetry.pid)
# cleanup the pid file
rm -f ./telemetry.pid