From b72292682bf387191c4e8c3d08b8ba53b45fe586 Mon Sep 17 00:00:00 2001 From: Zhang Date: Wed, 31 Jan 2024 09:35:08 +0800 Subject: [PATCH] fix format issuse --- scripts/install-oneapi.bat | 38 +++++++++++++++++++------------------- 1 file changed, 19 insertions(+), 19 deletions(-) diff --git a/scripts/install-oneapi.bat b/scripts/install-oneapi.bat index 0cfd5364b..e99bef14a 100644 --- a/scripts/install-oneapi.bat +++ b/scripts/install-oneapi.bat @@ -1,19 +1,19 @@ -:: MIT license -:: Copyright (C) 2024 Intel Corporation -:: SPDX-License-Identifier: MIT - - -set URL=%1 -set COMPONENTS=%2 - -curl.exe --output %TEMP%\webimage.exe --url %URL% --retry 5 --retry-delay 5 -start /b /wait %TEMP%\webimage.exe -s -x -f webimage_extracted --log extract.log -del %TEMP%\webimage.exe -if "%COMPONENTS%"=="" ( - webimage_extracted\bootstrapper.exe -s --action install --eula=accept -p=NEED_VS2017_INTEGRATION=0 -p=NEED_VS2019_INTEGRATION=0 -p=NEED_VS2022_INTEGRATION=0 --log-dir=. -) else ( - webimage_extracted\bootstrapper.exe -s --action install --components=%COMPONENTS% --eula=accept -p=NEED_VS2017_INTEGRATION=0 -p=NEED_VS2019_INTEGRATION=0 -p=NEED_VS2022_INTEGRATION=0 --log-dir=. -) -set installer_exit_code=%ERRORLEVEL% -rd /s/q "webimage_extracted" -exit /b %installer_exit_code% +:: MIT license +:: Copyright (C) 2024 Intel Corporation +:: SPDX-License-Identifier: MIT + + +set URL=%1 +set COMPONENTS=%2 + +curl.exe --output %TEMP%\webimage.exe --url %URL% --retry 5 --retry-delay 5 +start /b /wait %TEMP%\webimage.exe -s -x -f webimage_extracted --log extract.log +del %TEMP%\webimage.exe +if "%COMPONENTS%"=="" ( + webimage_extracted\bootstrapper.exe -s --action install --eula=accept -p=NEED_VS2017_INTEGRATION=0 -p=NEED_VS2019_INTEGRATION=0 -p=NEED_VS2022_INTEGRATION=0 --log-dir=. +) else ( + webimage_extracted\bootstrapper.exe -s --action install --components=%COMPONENTS% --eula=accept -p=NEED_VS2017_INTEGRATION=0 -p=NEED_VS2019_INTEGRATION=0 -p=NEED_VS2022_INTEGRATION=0 --log-dir=. +) +set installer_exit_code=%ERRORLEVEL% +rd /s/q "webimage_extracted" +exit /b %installer_exit_code%