summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorxq114 <[email protected]>2023-05-10 14:20:35 +0800
committerxq114 <[email protected]>2023-05-10 14:20:35 +0800
commitc8169591343bf62a970b2edffc90e26cfdfb2d31 (patch)
treedb1886141e5727d2d2990421c964850878ceba0c /scripts
parent8ecdc87d0ed33c96caeeeb973702a56a1f8f4c2a (diff)
postpone env test to avoid locking
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/xrepo.bat12
1 files changed, 4 insertions, 8 deletions
diff --git a/scripts/xrepo.bat b/scripts/xrepo.bat
index 5017e3275..8cdd7a5b6 100755
--- a/scripts/xrepo.bat
+++ b/scripts/xrepo.bat
@@ -36,18 +36,14 @@
exit /B 1
) else (
setlocal EnableDelayedExpansion
- @%XMAKE_EXE% lua --quiet private.xrepo.action.env | findstr . && (
- echo error: corrupt xmake.lua detected in the current directory^^!
- exit /B 1
- )
- @%XMAKE_EXE% lua --quiet private.xrepo.action.env
- if !errorlevel! neq 0 (
- exit /B !errorlevel!
- )
%XMAKE_EXE% lua private.xrepo.action.env.info config
if !errorlevel! neq 0 (
exit /B !errorlevel!
)
+ @%XMAKE_EXE% lua --quiet private.xrepo.action.env | findstr . && (
+ echo error: corrupt xmake.lua detected in the current directory^^!
+ exit /B 1
+ )
@%XMAKE_EXE% lua --quiet private.xrepo.action.env.info prompt 1>nul
if !errorlevel! neq 0 (
echo error: xmake.lua not found^^!