summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rwxr-xr-xbin/reproducible_maintainance.sh2
1 files changed, 1 insertions, 1 deletions
diff --git a/bin/reproducible_maintainance.sh b/bin/reproducible_maintainance.sh
index b33701f2..fbe49aff 100755
--- a/bin/reproducible_maintainance.sh
+++ b/bin/reproducible_maintainance.sh
@@ -115,7 +115,7 @@ if [ -s $RESULT ] ; then
echo "Warning: processes found which should not be there:"
cat $RESULT
echo
- ZOMBIES=$(echo $RESULT | cut -d " " -f1 | xargs echo)
+ ZOMBIES=$(cat $RESULT | cut -d " " -f1 | xargs echo)
echo "kill -9 $(echo $ZOMBIES)"
echo "Please cleanup manually."
echo