summaryrefslogtreecommitdiffstats
path: root/scripts/scrubtree
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/scrubtree')
-rwxr-xr-xscripts/scrubtree9
1 files changed, 8 insertions, 1 deletions
diff --git a/scripts/scrubtree b/scripts/scrubtree
index 3e3b20f33..7d89d8e04 100755
--- a/scripts/scrubtree
+++ b/scripts/scrubtree
@@ -1,5 +1,12 @@
#!/bin/bash
+DEBUG=""
+
+if [ "$1" == "--debug" ]; then
+ DEBUG="--debug"
+ shift
+fi
+
if [ -z "$1" ]; then
echo "Usage: $0 /path/to/tree"
exit 1
@@ -48,7 +55,7 @@ while [ -n "$1" ]; do
if [ ! -f "$1" ]; then
ln -sf ./busybox $1
else
- echo "Overriding busybox version of $1"
+ [ -n "$DEBUG" ] && echo "Overriding busybox version of $1"
fi
fi
shift