Git refuses to store empty directories. So, build scripts modified to create Output directory as needed.
6 lines
85 B
Batchfile
6 lines
85 B
Batchfile
@echo off
|
|
setlocal
|
|
|
|
if not exist Output md Output
|
|
|
|
pushd Images && Build && popd |