Git refuses to store empty directories. So, build scripts modified to create Output directory as needed.
10 lines
86 B
Batchfile
10 lines
86 B
Batchfile
@echo off
|
|
|
|
setlocal
|
|
|
|
if not exist Output md Output
|
|
|
|
cd Source
|
|
|
|
call Build %*
|