Commit 3c2dec3d authored by Boxiang Sun's avatar Boxiang Sun

rumme: Handle missing tools in TOOL_PATH gracefully

Suppress errors and ensure script continuation when tools are absent in TOOL_PATH assignment
parent de958436
......@@ -194,7 +194,7 @@ echo "Checking all required tools are installed"
set +e
for i in $TOOLS; do
TOOL_PATH=`which $i`
TOOL_PATH=$(which $i 2>/dev/null) || true
if [ "x$TOOL_PATH" == "x" ]; then
echo "Tool $i is not installed"
echo "If running under apt based package management you can run -"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment