Proper tools checking

This commit is contained in:
AGG2017 2024-02-18 09:40:40 -05:00
parent 90aeec2af0
commit 313c050ff8
11 changed files with 62 additions and 9 deletions

View file

@ -14,7 +14,7 @@ project_root="$1"
python_package="$2"
# check the required tools
TOOL_LIST="unzip"
TOOL_LIST="unzip sed"
for tool_name in $TOOL_LIST; do
echo "Checking tool: $tool_name"
tool_path=$(which "$tool_name")