4 lines
66 B
Bash
4 lines
66 B
Bash
#!/bin/sh
|
|
cd "$(dirname "$0")" || exit 1
|
|
exec python3 app.py "$@"
|
#!/bin/sh
|
|
cd "$(dirname "$0")" || exit 1
|
|
exec python3 app.py "$@"
|