mirror of
https://github.com/Insality/druid
synced 2025-09-27 18:12:21 +02:00
Update druid editor scripts to run from dependency
This commit is contained in:
15
druid/editor_scripts/run_python_script_on_gui.sh
Normal file
15
druid/editor_scripts/run_python_script_on_gui.sh
Normal file
@@ -0,0 +1,15 @@
|
||||
#!/bin/bash
|
||||
# @license MIT, Insality 2022
|
||||
# @source https://github.com/Insality/druid
|
||||
|
||||
echo "Run bash for $1"
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
||||
|
||||
is_defree_installed=$(pip3 list --disable-pip-version-check | grep -E "deftree")
|
||||
if [ -z "$is_defree_installed" ]; then
|
||||
echo "The python deftree is not installed. Please install it via"
|
||||
echo "pip3 install deftree"
|
||||
exit 0
|
||||
fi
|
||||
|
||||
python3 $1 $2
|
Reference in New Issue
Block a user