From 1e533e5ba6b7805358805bce4109b04a124c7cbf Mon Sep 17 00:00:00 2001 From: Jeremy Rand Date: Fri, 19 Feb 2021 00:35:53 +0000 Subject: [PATCH] Add echos to interrupt script --- tools/container-interrupt.sh | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tools/container-interrupt.sh b/tools/container-interrupt.sh index a564ed0..c8f4ab8 100755 --- a/tools/container-interrupt.sh +++ b/tools/container-interrupt.sh @@ -1,7 +1,11 @@ #!/usr/bin/env bash +echo "Interrupting build container..." + # Make sure tor-browser-build knows why the build stopped. touch tmp/interrupted # Send SIGINT to all processes inside the container. kill -s SIGINT $(./tools/container-pids.sh) + +echo "Interrupted!"