forked from MirrorRepos/RomWBW
Browse Source
Git refuses to store empty directories. So, build scripts modified to create Output directory as needed.patch
3 changed files with 8 additions and 1 deletions
@ -1,4 +1,9 @@ |
|||
@echo off |
|||
|
|||
setlocal |
|||
|
|||
if not exist Output md Output |
|||
|
|||
cd Source |
|||
|
|||
call Build %* |
|||
|
|||
@ -1,4 +1,6 @@ |
|||
@echo off |
|||
setlocal |
|||
|
|||
if not exist Output md Output |
|||
|
|||
pushd Images && Build && popd |
|||
Loading…
Reference in new issue