mirror of
https://github.com/sb745/NyaaV3.git
synced 2025-03-12 22:06:55 +02:00
Add proper shebang line to run.py (#275)
Without a shebang, the shell tries to interpret the file as a shell script if you issue the ./run.py command; setting chmod +x on the file without a proper shebang is useless.
This commit is contained in:
parent
081eb16246
commit
5358b2bd2b
1 changed files with 1 additions and 0 deletions
1
run.py
1
run.py
|
@ -1,2 +1,3 @@
|
||||||
|
#!/usr/bin/env python3
|
||||||
from nyaa import app
|
from nyaa import app
|
||||||
app.run(host='0.0.0.0', port=5500, debug=True)
|
app.run(host='0.0.0.0', port=5500, debug=True)
|
||||||
|
|
Loading…
Add table
Reference in a new issue