diff options
author | Boris Kolpackov <boris@codesynthesis.com> | 2018-12-06 18:32:51 +0200 |
---|---|---|
committer | Boris Kolpackov <boris@codesynthesis.com> | 2018-12-06 18:32:51 +0200 |
commit | 30c61dfa33b0a92c6ad1bdd8839140c20bdaddcc (patch) | |
tree | e8b23c8cf8c3a818867e305ccc30d67f57c0d7a0 | |
parent | d91ea49fa60e773db73d8fbcfd51037ceb835b9c (diff) |
Minor consistency fixes in build batch files
-rw-r--r-- | build-mingw.bat | 4 | ||||
-rw-r--r-- | build-msvc.bat | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/build-mingw.bat b/build-mingw.bat index fff31d5..5a3c26f 100644 --- a/build-mingw.bat +++ b/build-mingw.bat @@ -292,10 +292,10 @@ bpkg-stage %verbose% create^ bpkg-stage %verbose% add %BUILD2_REPO% @if errorlevel 1 goto error -bpkg-stage %verbose% fetch %timeout% %trust% +bpkg-stage %verbose% %timeout% %trust% fetch @if errorlevel 1 goto error -bpkg-stage %verbose% build %timeout% --for install --yes --plan= build2 bpkg bdep +bpkg-stage %verbose% %timeout% build --for install --yes --plan= build2 bpkg bdep @if errorlevel 1 goto error bpkg-stage %verbose% install build2 bpkg bdep diff --git a/build-msvc.bat b/build-msvc.bat index 3f525d8..3ad5061 100644 --- a/build-msvc.bat +++ b/build-msvc.bat @@ -256,10 +256,10 @@ bpkg-stage %verbose% create^ bpkg-stage %verbose% add %BUILD2_REPO% @if errorlevel 1 goto error -bpkg-stage %verbose% fetch %timeout% %trust% +bpkg-stage %verbose% %timeout% %trust% fetch @if errorlevel 1 goto error -bpkg-stage %verbose% build %timeout% --for install --yes --plan= build2 bpkg bdep +bpkg-stage %verbose% %timeout% build --for install --yes --plan= build2 bpkg bdep @if errorlevel 1 goto error bpkg-stage %verbose% install build2 bpkg bdep |