include stacktraces in runner scripts

This commit is contained in:
Dustin Carlino 2019-10-23 08:50:56 -07:00
parent cca6e25202
commit d5c82a63e0
2 changed files with 3 additions and 2 deletions

View File

@ -1,2 +1,3 @@
cd game
game.exe > ..\\output.txt
set RUST_BACKTRACE=1
game.exe 1> ..\\output.txt 2>&1

View File

@ -1,4 +1,4 @@
#!/bin/bash
cd game
./game
RUST_BACKTRACE=1 ./game