Report when a /tmp/port is missing files.

This commit is contained in:
Daniel Nichter
2012-07-19 12:51:23 -06:00
parent efb6a0f6ce
commit 97a8ba9518

View File

@@ -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