From 0b690aedea2197bfd4e6c083502e1c213ec7dfb3 Mon Sep 17 00:00:00 2001 From: casey langen Date: Fri, 18 Sep 2020 23:23:31 -0700 Subject: [PATCH] Move batch files to 'script' subdirectory --- build-win.bat => script/build-win.bat | 6 ++++-- clean-win.bat => script/clean-win.bat | 0 2 files changed, 4 insertions(+), 2 deletions(-) rename build-win.bat => script/build-win.bat (96%) rename clean-win.bat => script/clean-win.bat (100%) diff --git a/build-win.bat b/script/build-win.bat similarity index 96% rename from build-win.bat rename to script/build-win.bat index 2ae61aa7e..0d728f2cc 100644 --- a/build-win.bat +++ b/script/build-win.bat @@ -2,7 +2,9 @@ set start=%time% @echo on -call clean-win.bat +SET scriptdir=%~dp0 + +call %scriptdir%\clean-win.bat echo "*** BUILDING MILKDROP ***" MSBuild.exe ../milkdrop2-musikcube/milkdrop2-musikcube.sln /m /nologo /verbosity:minimal /p:Configuration=Release /p:Platform=Win32 @@ -34,4 +36,4 @@ if %hours% lss 0 set /a hours = 24%hours% if 1%ms% lss 100 set ms=0%ms% set /a totalsecs = %hours%*3600 + %mins%*60 + %secs% @echo on -echo Build time: %hours%:%mins%:%secs%.%ms% (%totalsecs%.%ms%s total) \ No newline at end of file +echo Build time: %hours%:%mins%:%secs%.%ms% (%totalsecs%.%ms%s total) diff --git a/clean-win.bat b/script/clean-win.bat similarity index 100% rename from clean-win.bat rename to script/clean-win.bat