Set executable flag on start.sh, use python3 -m in scripts

This commit is contained in:
Dmitri Bogomolov 2021-03-07 23:49:45 +02:00
parent 83c2e48fe5
commit 66b0f43f08
Signed by untrusted user: g1itch
GPG Key ID: 720A756F18DEED13
2 changed files with 2 additions and 2 deletions

View File

@ -1,2 +1,2 @@
#!/bin/sh
python3 minode/main.py --i2p --no-ip --host 127.0.0.1 "$@"
python3 -m minode.main --i2p --no-ip --host 127.0.0.1 "$@"

2
start.sh Normal file → Executable file
View File

@ -1,2 +1,2 @@
#!/bin/sh
python3 minode/main.py "$@"
python3 -m minode.main "$@"