9 lines
186 B
Bash
9 lines
186 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Check if python is installed
|
||
|
|
if ! [ -x "$(command -v python)" ]; then
|
||
|
|
echo 'Error: python is not installed.' >&2
|
||
|
|
exit 1
|
||
|
|
fi
|
||
|
|
|
||
|
|
python ./generateDefaultConfig.py ../../src
|