Skip to content

Commit

Permalink
Improved launch scripts, again
Browse files Browse the repository at this point in the history
  • Loading branch information
George-lewis committed Nov 18, 2019
1 parent 91db642 commit 729a538
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 1 deletion.
2 changes: 2 additions & 0 deletions launch.bat
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ if errorlevel 1 goto eof

cd src

echo "Launching Dreadnought"

python main.py

goto eof
Expand Down
2 changes: 2 additions & 0 deletions launch.sh
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,6 @@ fi;

cd src

echo "Launching Dreadnought"

/usr/bin/env python3 main.py
5 changes: 4 additions & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,9 +10,12 @@ def install(package):

sys.exit(1)

print(f'You are using Python version {sys.version.split()[0]}!')

#old = sys.stdout

#sys.stdout = None
sys.stdout = None
sys.stderr = None

with open('requirements.txt') as f:
for line in f:
Expand Down

0 comments on commit 729a538

Please sign in to comment.