[ttssh2-commit] [9818] release.bat が常に pause しないようになっていた

Back to archive index
scmno****@osdn***** scmno****@osdn*****
2022年 3月 18日 (金) 00:28:18 JST


Revision: 9818
          https://osdn.net/projects/ttssh2/scm/svn/commits/9818
Author:   zmatsuo
Date:     2022-03-18 00:28:18 +0900 (Fri, 18 Mar 2022)
Log Message:
-----------
release.bat が常に pause しないようになっていた

- ビルドしたコンソールが消えてしまわないようにするため
- r9816
  - AppVeyor上ではpauseしないようにした

Revision Links:
--------------
    https://osdn.net/projects/ttssh2/scm/svn/commits/9816

Modified Paths:
--------------
    trunk/installer/release.bat
    trunk/installer/toolinfo_sample.bat

-------------- next part --------------
Modified: trunk/installer/release.bat
===================================================================
--- trunk/installer/release.bat	2022-03-17 13:39:33 UTC (rev 9817)
+++ trunk/installer/release.bat	2022-03-17 15:28:18 UTC (rev 9818)
@@ -14,7 +14,7 @@
 set ARGON2_VERSION=20190702
 set LIBRESSL_VERSION=3.4.2
 
-if "%APPVEYOR%" == "" set NOPAUSE=1
+if "%APPVEYOR%" == "True" set NOPAUSE=1
 
 call :setup_tools_env
 
@@ -67,7 +67,7 @@
     call :check_tools
 )
 
-if "%NOPAUSE" == "" pause
+if not "%NOPAUSE%" == "1" pause
 exit 0
 
 
@@ -223,7 +223,7 @@
 set PERL=C:\cygwin\usr\bin\perl.exe
 if exist %PERL% exit /b 0
 echo perl not found
-if "%NOPAUSE" == "" pause
+if not "%NOPAUSE%" == "1" pause
 exit
 
 rem ####################
@@ -243,7 +243,7 @@
 set SVN="%SVN_PATH%\svn.exe"
 if exist %SVN% exit /b 0
 echo svn not found
-if "%NOPAUSE" == "" pause
+if not "%NOPAUSE%" == "1" pause
 exit
 
 rem ####################
@@ -262,7 +262,7 @@
 set CMAKE="%CMAKE_PATH%\cmake.exe"
 if exist %CMAKE% exit /b 0
 echo cmake not found
-if "%NOPAUSE" == "" pause
+if not "%NOPAUSE%" == "1" pause
 exit
 
 rem ####################
@@ -281,7 +281,7 @@
 if exist %INNO_SETUP% exit /b 0
 :search_iscc_not_found
 echo iscc(inno setup) not found
-if "%NOPAUSE" == "" pause
+if not "%NOPAUSE%" == "1" pause
 exit
 
 rem ####################
@@ -302,7 +302,7 @@
 :vs_not_found
 echo Visual Studio not found
 echo VS_BASE=%VS_BASE%
-if "%NOPAUSE" == "" pause
+if not "%NOPAUSE%" == "1" pause
 exit
 
 rem ####################

Modified: trunk/installer/toolinfo_sample.bat
===================================================================
--- trunk/installer/toolinfo_sample.bat	2022-03-17 13:39:33 UTC (rev 9817)
+++ trunk/installer/toolinfo_sample.bat	2022-03-17 15:28:18 UTC (rev 9818)
@@ -12,3 +12,6 @@
 rem set CURL=C:\Windows\System32\curl.exe
 rem set CYGWIN_PATH=C:\cygwin64\bin
 rem set INNO_SETUP="C:\Program Files (x86)\Inno Setup 6\iscc.exe"
+
+rem release.bat \x82ւ̎w\x8E\xA6
+rem set NOPAUSE=0


ttssh2-commit メーリングリストの案内
Back to archive index