The .zip release's Ungap the Map scripts were still assuming an older directory structure

This commit is contained in:
Dustin Carlino 2022-07-08 18:49:29 +01:00
parent 355513d5df
commit c95c16454b
2 changed files with 2 additions and 4 deletions

View File

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

View File

@ -1,5 +1,4 @@
#!/bin/bash
cd game
echo See logs in output.txt
RUST_BACKTRACE=1 ./game --ungap 1> ../output.txt 2>&1
RUST_BACKTRACE=1 ./game --ungap 1> output.txt 2>&1