From 97a8ba951853b158463581ad4278836c02eb4bdf Mon Sep 17 00:00:00 2001 From: Daniel Nichter Date: Thu, 19 Jul 2012 12:51:23 -0600 Subject: [PATCH] Report when a /tmp/port is missing files. --- sandbox/stop-sandbox | 3 +++ 1 file changed, 3 insertions(+) diff --git a/sandbox/stop-sandbox b/sandbox/stop-sandbox index b060a4b4..68776034 100755 --- a/sandbox/stop-sandbox +++ b/sandbox/stop-sandbox @@ -20,6 +20,9 @@ for port in "$@"; do if [ -x "/tmp/$port/stop" ]; then /tmp/$port/stop exit_status=$((exit_status | $?)) + else + echo "/tmp/$port is missing files:" >&2 + ls -la /tmp/$port >&2 fi rm -rf /tmp/$port