mirror of
https://github.com/djohnlewis/stackdump
synced 2024-12-04 15:07:36 +00:00
12 lines
214 B
Bash
12 lines
214 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
SCRIPT_DIR=`dirname $0`
|
||
|
|
||
|
# ensure the data directory exists
|
||
|
if [ ! -e "$SCRIPT_DIR/data" ]
|
||
|
then
|
||
|
mkdir "$SCRIPT_DIR/data"
|
||
|
fi
|
||
|
|
||
|
"$SCRIPT_DIR/start_python.sh" "$SCRIPT_DIR/python/src/stackdump/app.py"
|