mirror of
https://github.com/ankitects/anki.git
synced 2025-11-12 07:37:11 -05:00
Fix setup-env.bat (#1659)
* Do not assume bazel is in the C drive * Quote PATH * make path separator consistent (dae)
This commit is contained in:
parent
f61c64dd34
commit
af93d8a124
1 changed files with 1 additions and 1 deletions
|
|
@ -3,7 +3,7 @@ pushd "%~dp0"\..
|
||||||
|
|
||||||
REM add msys/bazel to path if they're not already on it
|
REM add msys/bazel to path if they're not already on it
|
||||||
where /q bazel || (
|
where /q bazel || (
|
||||||
set PATH=c:\msys64\usr\bin;c:\bazel;%PATH%
|
set PATH=c:\msys64\usr\bin;\bazel;"%PATH%"
|
||||||
)
|
)
|
||||||
|
|
||||||
if not exist windows.bazelrc (
|
if not exist windows.bazelrc (
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue