| 123456789101112131415161718192021222324252627 |
- commit 41de5f3c5221aa8bc485aab7bb472a7152003f54
- Author: hedger <hedger@users.noreply.github.com>
- Date: Sat Nov 12 22:28:29 2022 +0400
- fbt: more fixes for windows environment #2011
- diff --git a/scripts/toolchain/fbtenv.cmd b/scripts/toolchain/fbtenv.cmd
- index 2305e891f..9fbd8fd9b 100644
- --- a/scripts/toolchain/fbtenv.cmd
- +++ b/scripts/toolchain/fbtenv.cmd
- @@ -1,6 +1,6 @@
- @echo off
-
- -if not [%FBT_ROOT%] == [] (
- +if not ["%FBT_ROOT%"] == [""] (
- goto already_set
- )
-
- @@ -9,7 +9,7 @@ pushd "%FBT_ROOT%"
- set "FBT_ROOT=%cd%"
- popd
-
- -if not [%FBT_NOENV%] == [] (
- +if not ["%FBT_NOENV%"] == [""] (
- exit /b 0
- )
-
|