9 lines
97 B
Bash
Executable File
9 lines
97 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if command -v solen > /dev/null
|
|
then
|
|
solen
|
|
else
|
|
python3 "./src/main.py"
|
|
fi
|