mirror of
https://github.com/EDCD/EDDN.git
synced 2025-04-25 12:42:14 +03:00
11 lines
223 B
Bash
Executable File
11 lines
223 B
Bash
Executable File
#!/bin/sh
|
|
#
|
|
# Run the EDDN Monitor from source
|
|
|
|
set -e
|
|
|
|
# Need to be in the src directory, relative to this script
|
|
cd "$(dirname $0)/src"
|
|
# And we invoke the *module*, not the script by filename.
|
|
python -m eddn.Monitor $@
|