diff options
author | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-09-06 16:53:19 +0000 |
---|---|---|
committer | Vadim Dashevskiy <watcherhd@gmail.com> | 2013-09-06 16:53:19 +0000 |
commit | 144948988e07f5ab923ba64a7576cbf37aed9175 (patch) | |
tree | 0176222ba7239aa629207fa77c9139db24035b1e | |
parent | bdc0ae091b4ed761524897eaa2ba559befacf3d1 (diff) |
- Installer: cleanup
git-svn-id: http://svn.miranda-ng.org/main/trunk@5972 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
-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
|