diff options
author | Rangi <remy.oukaour+rangi@gmail.com> | 2020-08-08 17:13:12 -0400 |
---|---|---|
committer | Rangi <remy.oukaour+rangi@gmail.com> | 2020-08-08 17:13:12 -0400 |
commit | e930339282f359d0254fc3d20cf020c7837b122f (patch) | |
tree | 5ba2a04b9c18fd7d306b7dc576bf15675c50edd7 | |
parent | 0a82eb6523b0c839d3eedcdce0aeaeae5289e726 (diff) |
Put baserom.gb in the right directory
-rw-r--r-- | .travis.yml | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/.travis.yml b/.travis.yml index 82d8af8..16def2a 100644 --- a/.travis.yml +++ b/.travis.yml @@ -7,10 +7,6 @@ install: sudo make -C rgbds install rm -rf rgbds sudo apt-get install wget p7zip-full - wget -O roms.7z 'https://tcrf.net/images/3/33/Pok%C3%A9mon_Gold_-_Spaceworld_1997_Demo_%28Debug%29.7z' - 7z e roms.7z - mv 'Pokémon Gold - Spaceworld 1997 Demo (Debug).sgb' baserom.gb - rm -f roms.7z 'Pokémon Gold - Spaceworld 1997 Demo (Debug) (Header Fixed).sgb' ) before_script: - |- @@ -21,6 +17,10 @@ before_script: return 1; fi; } + - wget -O roms.7z 'https://tcrf.net/images/3/33/Pok%C3%A9mon_Gold_-_Spaceworld_1997_Demo_%28Debug%29.7z' + - 7z e roms.7z + - mv 'Pokémon Gold - Spaceworld 1997 Demo (Debug).sgb' baserom.gb + - rm -f roms.7z 'Pokémon Gold - Spaceworld 1997 Demo (Debug) (Header Fixed).sgb' script: - make -j2 compare - check_status |