From 1306ce8dd88f11b84addcba5d8b005168ad55d12 Mon Sep 17 00:00:00 2001 From: Masaru Tsuchiyama Date: Thu, 4 Jun 2026 17:33:38 +0900 Subject: [PATCH 1/5] =?UTF-8?q?=E3=83=93=E3=83=AB=E3=83=89=E5=A4=B1?= =?UTF-8?q?=E6=95=97=E6=99=82=E3=81=AB=20GitHub=20Actions=20=E3=81=8C?= =?UTF-8?q?=E3=82=A8=E3=83=A9=E3=83=BC=E3=81=A7=E6=AD=A2=E3=81=BE=E3=82=8B?= =?UTF-8?q?=E3=82=88=E3=81=86=E3=81=AB=E3=81=99=E3=82=8B=20(#1092)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit release.bat の option 1〜6, 11〜14 において、各 call の後に if errorlevel 1 exit /b 1 を追加し、サブルーチンがエラーを返した 場合にスクリプトを即座に終了するようにした。 Co-Authored-By: Claude Sonnet 4.6 --- installer/release.bat | 25 +++++++++++++++++++++++++ 1 file changed, 25 insertions(+) diff --git a/installer/release.bat b/installer/release.bat index cc5783740..382bafc08 100644 --- a/installer/release.bat +++ b/installer/release.bat @@ -38,35 +38,50 @@ echo %no% if "%no%" == "1" ( call :download_libs force + if errorlevel 1 exit /b 1 call :build_libs + if errorlevel 1 exit /b 1 call :build_teraterm rebuild + if errorlevel 1 exit /b 1 ) if "%no%" == "2" ( call :download_libs + if errorlevel 1 exit /b 1 call :build_libs + if errorlevel 1 exit /b 1 call :build_teraterm rebuild + if errorlevel 1 exit /b 1 ) if "%no%" == "3" ( call :download_libs + if errorlevel 1 exit /b 1 call :build_libs + if errorlevel 1 exit /b 1 call :build_teraterm + if errorlevel 1 exit /b 1 ) if "%no%" == "4" ( call :download_libs + if errorlevel 1 exit /b 1 call :build_libs + if errorlevel 1 exit /b 1 ) if "%no%" == "5" ( call :build_libs + if errorlevel 1 exit /b 1 call :build_teraterm rebuild + if errorlevel 1 exit /b 1 ) if "%no%" == "6" ( call :build_libs + if errorlevel 1 exit /b 1 call :build_teraterm + if errorlevel 1 exit /b 1 ) if "%no%" == "7" ( @@ -83,24 +98,34 @@ if "%no%" == "10" ( if "%no%" == "11" ( call :download_libs + if errorlevel 1 exit /b 1 call :build_teraterm_1 rebuild + if errorlevel 1 exit /b 1 ) if "%no%" == "12" ( call :download_libs + if errorlevel 1 exit /b 1 call :build_libs + if errorlevel 1 exit /b 1 call :build_teraterm_2 rebuild + if errorlevel 1 exit /b 1 ) if "%no%" == "13" ( call :download_libs + if errorlevel 1 exit /b 1 call :build_teraterm_1 + if errorlevel 1 exit /b 1 ) if "%no%" == "14" ( call :download_libs + if errorlevel 1 exit /b 1 call :build_libs + if errorlevel 1 exit /b 1 call :build_teraterm_2 + if errorlevel 1 exit /b 1 ) if not "%NOPAUSE%" == "1" pause From 89f72203bf1aefa66d0da47ec94744a866eb0242 Mon Sep 17 00:00:00 2001 From: Masaru Tsuchiyama Date: Thu, 4 Jun 2026 17:38:15 +0900 Subject: [PATCH 2/5] =?UTF-8?q?:build=5Flibs=20=E3=81=8C=E3=82=A8=E3=83=A9?= =?UTF-8?q?=E3=83=BC=E3=82=92=E8=BF=94=E3=81=99=E3=82=88=E3=81=86=E3=81=AB?= =?UTF-8?q?=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit buildall.bat が失敗した場合に exit /b 1 で返すようにした。 これまでは常に exit /b 0 を返していたため、libs のビルド失敗が 上位スクリプトに伝播しなかった。 Co-Authored-By: Claude Sonnet 4.6 --- installer/release.bat | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/installer/release.bat b/installer/release.bat index 382bafc08..7e5aa0a04 100644 --- a/installer/release.bat +++ b/installer/release.bat @@ -157,6 +157,10 @@ rem #################### setlocal cd /d %CUR%..\libs call buildall.bat +if errorlevel 1 ( + endlocal + exit /b 1 +) endlocal exit /b 0 From eedd3d1a675f2cbcbde74f36af74ebd08f20cda6 Mon Sep 17 00:00:00 2001 From: Masaru Tsuchiyama Date: Fri, 5 Jun 2026 14:09:08 +0900 Subject: [PATCH 3/5] =?UTF-8?q?create=5Fpackage.bat=20=E3=81=AE=E5=90=84?= =?UTF-8?q?=E3=82=B3=E3=83=9E=E3=83=B3=E3=83=89=E3=81=AB=E3=82=A8=E3=83=A9?= =?UTF-8?q?=E3=83=BC=E3=83=81=E3=82=A7=E3=83=83=E3=82=AF=E3=82=92=E8=BF=BD?= =?UTF-8?q?=E5=8A=A0=E3=81=99=E3=82=8B=20(#1334)?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- installer/create_package.bat | 177 ++++++++++++++++++++++------------- 1 file changed, 112 insertions(+), 65 deletions(-) diff --git a/installer/create_package.bat b/installer/create_package.bat index 63237e384..3f9f7826a 100644 --- a/installer/create_package.bat +++ b/installer/create_package.bat @@ -1,65 +1,112 @@ -@rem CXg[,zip쐬 -@rem test -@rem release.batsA -@rem 7. exec cmd.exe IłgpƁAbateXgł܂ -setlocal - - -rem arch for package -if "%arch%" == "" (set arch=x86) - - -rem Change the working directory to the location of this BAT file -cd /d %~dp0 - - -if not exist Output mkdir Output -if not exist Output\portable mkdir Output\portable - -SET VCSVERSION=%GITVERSION% -IF NOT "%SVNVERSION%" == "unknown" ( - SET VCSVERSION=r%SVNVERSION% -) - -set SNAPSHOT_OUTPUT=teraterm-%VERSION%-%arch%-%DATE%_%TIME%-%VCSVERSION%-%USERNAME%-snapshot -set RELEASE_OUTPUT=teraterm-%VERSION%-%arch% -if "%RELEASE%" == "1" ( - set OUTPUT=%RELEASE_OUTPUT% -) else ( - set OUTPUT=%SNAPSHOT_OUTPUT% -) - -rem |[^ułRs[ĎĂ(Ɏgp) -%CMAKE% -E rm -rf Output/portable/teraterm-%arch% -%CMAKE% -E copy_directory Output/build/teraterm-%arch% Output/portable/teraterm-%arch% - - -rem (Ȃ)CXg[쐬 -set INNO_SETUP_OUTPUT="/DOutputBaseFilename=%OUTPUT%" -if "%RELEASE%" == "1" ( - set INNO_SETUP_APPVERSION="/DAppVersion=%VERSION%" -) else ( - set INNO_SETUP_APPVERSION="/DAppVersion=%VERSION% %DATE%_%TIME%-%VCSVERSION%" -) -set INNO_SETUP_ARCH="/DArch=x86" -if "%arch%" == "x64" (set INNO_SETUP_ARCH=/DArch=%arch%) -if "%arch%" == "arm64" (set INNO_SETUP_ARCH=/DArch=%arch%) -%INNO_SETUP% %INNO_SETUP_APPVERSION% /OOutput %INNO_SETUP_OUTPUT% /DSrcDir=Output\build\teraterm-%arch% %INNO_SETUP_ARCH% teraterm.iss - -rem (Ȃ)|[^ułzip쐬 -pushd Output -%CMAKE% -E rm -rf %OUTPUT% -%CMAKE% -E rm -rf %OUTPUT%_pdb -%CMAKE% -E copy_directory build\teraterm-%arch% %OUTPUT% -%CMAKE% -E copy_directory build\teraterm-%arch%_pdb %OUTPUT%_pdb -%CMAKE% -E tar cf %OUTPUT%.zip --format=zip %OUTPUT%/ -%CMAKE% -E tar cf %OUTPUT%_pdb.zip --format=zip %OUTPUT%_pdb/ -popd - -rem nbV쐬 -pushd Output -%CMAKE% -E sha256sum %OUTPUT%.exe %OUTPUT%.zip %OUTPUT%_pdb.zip > %OUTPUT%.sha256sum -%CMAKE% -E sha512sum %OUTPUT%.exe %OUTPUT%.zip %OUTPUT%_pdb.zip > %OUTPUT%.sha512sum -popd - -endlocal +@rem CXg[,zip쐬 +@rem test +@rem release.batsA +@rem 7. exec cmd.exe IłgpƁAbateXgł܂ +setlocal + + +rem arch for package +if "%arch%" == "" (set arch=x86) + + +rem Change the working directory to the location of this BAT file +cd /d %~dp0 + + +if not exist Output mkdir Output +if not exist Output\portable mkdir Output\portable + +SET VCSVERSION=%GITVERSION% +IF NOT "%SVNVERSION%" == "unknown" ( + SET VCSVERSION=r%SVNVERSION% +) + +set SNAPSHOT_OUTPUT=teraterm-%VERSION%-%arch%-%DATE%_%TIME%-%VCSVERSION%-%USERNAME%-snapshot +set RELEASE_OUTPUT=teraterm-%VERSION%-%arch% +if "%RELEASE%" == "1" ( + set OUTPUT=%RELEASE_OUTPUT% +) else ( + set OUTPUT=%SNAPSHOT_OUTPUT% +) + +rem |[^uŃRs[ĎgĎgp(eXgɎgp) +%CMAKE% -E rm -rf Output/portable/teraterm-%arch% +%CMAKE% -E copy_directory Output/build/teraterm-%arch% Output/portable/teraterm-%arch% +if ERRORLEVEL 1 ( + echo ERROR copy_directory Output/build/teraterm-%arch% + endlocal + exit /b 1 +) + + +rem (IvV)CXg[쐬 +set INNO_SETUP_OUTPUT="/DOutputBaseFilename=%OUTPUT%" +if "%RELEASE%" == "1" ( + set INNO_SETUP_APPVERSION="/DAppVersion=%VERSION%" +) else ( + set INNO_SETUP_APPVERSION="/DAppVersion=%VERSION% %DATE%_%TIME%-%VCSVERSION%" +) +set INNO_SETUP_ARCH="/DArch=x86" +if "%arch%" == "x64" (set INNO_SETUP_ARCH=/DArch=%arch%) +if "%arch%" == "arm64" (set INNO_SETUP_ARCH=/DArch=%arch%) +%INNO_SETUP% %INNO_SETUP_APPVERSION% /OOutput %INNO_SETUP_OUTPUT% /DSrcDir=Output\build\teraterm-%arch% %INNO_SETUP_ARCH% teraterm.iss +if ERRORLEVEL 1 ( + echo ERROR %INNO_SETUP% + endlocal + exit /b 1 +) + +rem (IvV)|[^uzip쐬 +pushd Output +%CMAKE% -E rm -rf %OUTPUT% +%CMAKE% -E rm -rf %OUTPUT%_pdb +%CMAKE% -E copy_directory build\teraterm-%arch% %OUTPUT% +if ERRORLEVEL 1 ( + echo ERROR copy_directory build\teraterm-%arch% + popd + endlocal + exit /b 1 +) +%CMAKE% -E copy_directory build\teraterm-%arch%_pdb %OUTPUT%_pdb +if ERRORLEVEL 1 ( + echo ERROR copy_directory build\teraterm-%arch%_pdb + popd + endlocal + exit /b 1 +) +%CMAKE% -E tar cf %OUTPUT%.zip --format=zip %OUTPUT%/ +if ERRORLEVEL 1 ( + echo ERROR tar %OUTPUT%.zip + popd + endlocal + exit /b 1 +) +%CMAKE% -E tar cf %OUTPUT%_pdb.zip --format=zip %OUTPUT%_pdb/ +if ERRORLEVEL 1 ( + echo ERROR tar %OUTPUT%_pdb.zip + popd + endlocal + exit /b 1 +) +popd + +rem nbV쐬 +pushd Output +%CMAKE% -E sha256sum %OUTPUT%.exe %OUTPUT%.zip %OUTPUT%_pdb.zip > %OUTPUT%.sha256sum +if ERRORLEVEL 1 ( + echo ERROR sha256sum + popd + endlocal + exit /b 1 +) +%CMAKE% -E sha512sum %OUTPUT%.exe %OUTPUT%.zip %OUTPUT%_pdb.zip > %OUTPUT%.sha512sum +if ERRORLEVEL 1 ( + echo ERROR sha512sum + popd + endlocal + exit /b 1 +) +popd + +endlocal +exit /b 0 From 2f6d9c1e43a0b34e3d2a2687288f38ed296f4738 Mon Sep 17 00:00:00 2001 From: Masaru Tsuchiyama Date: Fri, 5 Jun 2026 14:29:08 +0900 Subject: [PATCH 4/5] =?UTF-8?q?create=5Fpackage.bat=20=E3=81=AE=E6=94=B9?= =?UTF-8?q?=E8=A1=8C=E3=82=B3=E3=83=BC=E3=83=89=E3=82=92=20CRLF=20?= =?UTF-8?q?=E3=81=AB=E4=BF=AE=E6=AD=A3=E3=81=99=E3=82=8B?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- installer/create_package.bat | 224 +++++++++++++++++------------------ 1 file changed, 112 insertions(+), 112 deletions(-) diff --git a/installer/create_package.bat b/installer/create_package.bat index 3f9f7826a..6c0d72782 100644 --- a/installer/create_package.bat +++ b/installer/create_package.bat @@ -1,112 +1,112 @@ -@rem CXg[,zip쐬 -@rem test -@rem release.batsA -@rem 7. exec cmd.exe IłgpƁAbateXgł܂ -setlocal - - -rem arch for package -if "%arch%" == "" (set arch=x86) - - -rem Change the working directory to the location of this BAT file -cd /d %~dp0 - - -if not exist Output mkdir Output -if not exist Output\portable mkdir Output\portable - -SET VCSVERSION=%GITVERSION% -IF NOT "%SVNVERSION%" == "unknown" ( - SET VCSVERSION=r%SVNVERSION% -) - -set SNAPSHOT_OUTPUT=teraterm-%VERSION%-%arch%-%DATE%_%TIME%-%VCSVERSION%-%USERNAME%-snapshot -set RELEASE_OUTPUT=teraterm-%VERSION%-%arch% -if "%RELEASE%" == "1" ( - set OUTPUT=%RELEASE_OUTPUT% -) else ( - set OUTPUT=%SNAPSHOT_OUTPUT% -) - -rem |[^uŃRs[ĎgĎgp(eXgɎgp) -%CMAKE% -E rm -rf Output/portable/teraterm-%arch% -%CMAKE% -E copy_directory Output/build/teraterm-%arch% Output/portable/teraterm-%arch% -if ERRORLEVEL 1 ( - echo ERROR copy_directory Output/build/teraterm-%arch% - endlocal - exit /b 1 -) - - -rem (IvV)CXg[쐬 -set INNO_SETUP_OUTPUT="/DOutputBaseFilename=%OUTPUT%" -if "%RELEASE%" == "1" ( - set INNO_SETUP_APPVERSION="/DAppVersion=%VERSION%" -) else ( - set INNO_SETUP_APPVERSION="/DAppVersion=%VERSION% %DATE%_%TIME%-%VCSVERSION%" -) -set INNO_SETUP_ARCH="/DArch=x86" -if "%arch%" == "x64" (set INNO_SETUP_ARCH=/DArch=%arch%) -if "%arch%" == "arm64" (set INNO_SETUP_ARCH=/DArch=%arch%) -%INNO_SETUP% %INNO_SETUP_APPVERSION% /OOutput %INNO_SETUP_OUTPUT% /DSrcDir=Output\build\teraterm-%arch% %INNO_SETUP_ARCH% teraterm.iss -if ERRORLEVEL 1 ( - echo ERROR %INNO_SETUP% - endlocal - exit /b 1 -) - -rem (IvV)|[^uzip쐬 -pushd Output -%CMAKE% -E rm -rf %OUTPUT% -%CMAKE% -E rm -rf %OUTPUT%_pdb -%CMAKE% -E copy_directory build\teraterm-%arch% %OUTPUT% -if ERRORLEVEL 1 ( - echo ERROR copy_directory build\teraterm-%arch% - popd - endlocal - exit /b 1 -) -%CMAKE% -E copy_directory build\teraterm-%arch%_pdb %OUTPUT%_pdb -if ERRORLEVEL 1 ( - echo ERROR copy_directory build\teraterm-%arch%_pdb - popd - endlocal - exit /b 1 -) -%CMAKE% -E tar cf %OUTPUT%.zip --format=zip %OUTPUT%/ -if ERRORLEVEL 1 ( - echo ERROR tar %OUTPUT%.zip - popd - endlocal - exit /b 1 -) -%CMAKE% -E tar cf %OUTPUT%_pdb.zip --format=zip %OUTPUT%_pdb/ -if ERRORLEVEL 1 ( - echo ERROR tar %OUTPUT%_pdb.zip - popd - endlocal - exit /b 1 -) -popd - -rem nbV쐬 -pushd Output -%CMAKE% -E sha256sum %OUTPUT%.exe %OUTPUT%.zip %OUTPUT%_pdb.zip > %OUTPUT%.sha256sum -if ERRORLEVEL 1 ( - echo ERROR sha256sum - popd - endlocal - exit /b 1 -) -%CMAKE% -E sha512sum %OUTPUT%.exe %OUTPUT%.zip %OUTPUT%_pdb.zip > %OUTPUT%.sha512sum -if ERRORLEVEL 1 ( - echo ERROR sha512sum - popd - endlocal - exit /b 1 -) -popd - -endlocal -exit /b 0 +@rem CXg[,zip쐬 +@rem test +@rem release.batsA +@rem 7. exec cmd.exe IłgpƁAbateXgł܂ +setlocal + + +rem arch for package +if "%arch%" == "" (set arch=x86) + + +rem Change the working directory to the location of this BAT file +cd /d %~dp0 + + +if not exist Output mkdir Output +if not exist Output\portable mkdir Output\portable + +SET VCSVERSION=%GITVERSION% +IF NOT "%SVNVERSION%" == "unknown" ( + SET VCSVERSION=r%SVNVERSION% +) + +set SNAPSHOT_OUTPUT=teraterm-%VERSION%-%arch%-%DATE%_%TIME%-%VCSVERSION%-%USERNAME%-snapshot +set RELEASE_OUTPUT=teraterm-%VERSION%-%arch% +if "%RELEASE%" == "1" ( + set OUTPUT=%RELEASE_OUTPUT% +) else ( + set OUTPUT=%SNAPSHOT_OUTPUT% +) + +rem |[^uŃRs[ĎgĎgp(eXgɎgp) +%CMAKE% -E rm -rf Output/portable/teraterm-%arch% +%CMAKE% -E copy_directory Output/build/teraterm-%arch% Output/portable/teraterm-%arch% +if ERRORLEVEL 1 ( + echo ERROR copy_directory Output/build/teraterm-%arch% + endlocal + exit /b 1 +) + + +rem (IvV)CXg[쐬 +set INNO_SETUP_OUTPUT="/DOutputBaseFilename=%OUTPUT%" +if "%RELEASE%" == "1" ( + set INNO_SETUP_APPVERSION="/DAppVersion=%VERSION%" +) else ( + set INNO_SETUP_APPVERSION="/DAppVersion=%VERSION% %DATE%_%TIME%-%VCSVERSION%" +) +set INNO_SETUP_ARCH="/DArch=x86" +if "%arch%" == "x64" (set INNO_SETUP_ARCH=/DArch=%arch%) +if "%arch%" == "arm64" (set INNO_SETUP_ARCH=/DArch=%arch%) +%INNO_SETUP% %INNO_SETUP_APPVERSION% /OOutput %INNO_SETUP_OUTPUT% /DSrcDir=Output\build\teraterm-%arch% %INNO_SETUP_ARCH% teraterm.iss +if ERRORLEVEL 1 ( + echo ERROR %INNO_SETUP% + endlocal + exit /b 1 +) + +rem (IvV)|[^uzip쐬 +pushd Output +%CMAKE% -E rm -rf %OUTPUT% +%CMAKE% -E rm -rf %OUTPUT%_pdb +%CMAKE% -E copy_directory build\teraterm-%arch% %OUTPUT% +if ERRORLEVEL 1 ( + echo ERROR copy_directory build\teraterm-%arch% + popd + endlocal + exit /b 1 +) +%CMAKE% -E copy_directory build\teraterm-%arch%_pdb %OUTPUT%_pdb +if ERRORLEVEL 1 ( + echo ERROR copy_directory build\teraterm-%arch%_pdb + popd + endlocal + exit /b 1 +) +%CMAKE% -E tar cf %OUTPUT%.zip --format=zip %OUTPUT%/ +if ERRORLEVEL 1 ( + echo ERROR tar %OUTPUT%.zip + popd + endlocal + exit /b 1 +) +%CMAKE% -E tar cf %OUTPUT%_pdb.zip --format=zip %OUTPUT%_pdb/ +if ERRORLEVEL 1 ( + echo ERROR tar %OUTPUT%_pdb.zip + popd + endlocal + exit /b 1 +) +popd + +rem nbV쐬 +pushd Output +%CMAKE% -E sha256sum %OUTPUT%.exe %OUTPUT%.zip %OUTPUT%_pdb.zip > %OUTPUT%.sha256sum +if ERRORLEVEL 1 ( + echo ERROR sha256sum + popd + endlocal + exit /b 1 +) +%CMAKE% -E sha512sum %OUTPUT%.exe %OUTPUT%.zip %OUTPUT%_pdb.zip > %OUTPUT%.sha512sum +if ERRORLEVEL 1 ( + echo ERROR sha512sum + popd + endlocal + exit /b 1 +) +popd + +endlocal +exit /b 0 From 670d00e43dbd04c8877f31e5b15587a0843b7a40 Mon Sep 17 00:00:00 2001 From: Masaru Tsuchiyama Date: Fri, 5 Jun 2026 14:42:49 +0900 Subject: [PATCH 5/5] =?UTF-8?q?create=5Fpackage.bat=20=E3=81=AE=E3=82=B3?= =?UTF-8?q?=E3=83=A1=E3=83=B3=E3=83=88=E3=82=92=E5=85=83=E3=81=AB=E6=88=BB?= =?UTF-8?q?=E3=81=99?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- installer/create_package.bat | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/installer/create_package.bat b/installer/create_package.bat index 6c0d72782..4b114e168 100644 --- a/installer/create_package.bat +++ b/installer/create_package.bat @@ -1,7 +1,7 @@ @rem CXg[,zip쐬 @rem test @rem release.batsA -@rem 7. exec cmd.exe IłgpƁAbateXgł܂ +@rem 7. exec cmd.exe IłgpƁAbateXgł܂ setlocal @@ -29,7 +29,7 @@ if "%RELEASE%" == "1" ( set OUTPUT=%SNAPSHOT_OUTPUT% ) -rem |[^uŃRs[ĎgĎgp(eXgɎgp) +rem |[^ułRs[ĎĂ(Ɏgp) %CMAKE% -E rm -rf Output/portable/teraterm-%arch% %CMAKE% -E copy_directory Output/build/teraterm-%arch% Output/portable/teraterm-%arch% if ERRORLEVEL 1 ( @@ -39,7 +39,7 @@ if ERRORLEVEL 1 ( ) -rem (IvV)CXg[쐬 +rem (Ȃ)CXg[쐬 set INNO_SETUP_OUTPUT="/DOutputBaseFilename=%OUTPUT%" if "%RELEASE%" == "1" ( set INNO_SETUP_APPVERSION="/DAppVersion=%VERSION%" @@ -56,7 +56,7 @@ if ERRORLEVEL 1 ( exit /b 1 ) -rem (IvV)|[^uzip쐬 +rem (Ȃ)|[^ułzip쐬 pushd Output %CMAKE% -E rm -rf %OUTPUT% %CMAKE% -E rm -rf %OUTPUT%_pdb @@ -90,7 +90,7 @@ if ERRORLEVEL 1 ( ) popd -rem nbV쐬 +rem nbV쐬 pushd Output %CMAKE% -E sha256sum %OUTPUT%.exe %OUTPUT%.zip %OUTPUT%_pdb.zip > %OUTPUT%.sha256sum if ERRORLEVEL 1 (