[all-commits] [llvm/llvm-project] f8c137: Update the Windows packaging script.
Carlos Alberto Enciso via All-commits
all-commits at lists.llvm.org
Wed Jul 20 05:23:14 PDT 2022
Branch: refs/heads/main
Home: https://github.com/llvm/llvm-project
Commit: f8c13754af55c1dcee3ee0a57580b43c422662c4
https://github.com/llvm/llvm-project/commit/f8c13754af55c1dcee3ee0a57580b43c422662c4
Author: Carlos Alberto Enciso <carlos.alberto.enciso at gmail.com>
Date: 2022-07-20 (Wed, 20 Jul 2022)
Changed paths:
M llvm/utils/release/build_llvm_release.bat
Log Message:
-----------
Update the Windows packaging script.
As discussed on:
https://discourse.llvm.org/t/build-llvm-release-bat-script-options/63146/6
Giving:
call :function if errorlevel 1 exit /b 1
Due to a missing new line, the error code returned by the function
is taking as another argument.
Changed to use standard '||' to exit if the errorlevel greater than zero.
call :function || exit /b 1
Reviewed By: hans
Differential Revision: https://reviews.llvm.org/D130154
More information about the All-commits
mailing list