diff options
-rw-r--r-- | tools/installer_ng/make_interactive.bat | 9 |
1 files changed, 3 insertions, 6 deletions
diff --git a/tools/installer_ng/make_interactive.bat b/tools/installer_ng/make_interactive.bat index aac851c113..26b1f59fd5 100644 --- a/tools/installer_ng/make_interactive.bat +++ b/tools/installer_ng/make_interactive.bat @@ -1,7 +1,6 @@ @echo off
rem Get archives if needed
-echo ------------------------------------------------------------------------------------
-echo ------------------------------------------------------------------------------------
+cls
:again
set /p answer=Do you want to create folder structure and download new components? (Y/N):
if /i "%answer:~,1%" EQU "Y" goto download
@@ -23,8 +22,7 @@ call createstructure.bat rem end
rem Make
-echo ------------------------------------------------------------------------------------
-echo ------------------------------------------------------------------------------------
+cls
:again1
set /p answ=Do you want to compile the installers now? (Y/N):
if /i "%answ:~,1%" EQU "Y" goto compile
@@ -38,8 +36,7 @@ call compile.bat rem end
rem Cleanup
-echo ------------------------------------------------------------------------------------
-echo ------------------------------------------------------------------------------------
+cls
:again2
set /p ans=Do you want to delete temp files and build folders? (Y/N):
if /i "%ans:~,1%" EQU "Y" goto cleanup
|