flipperzero-firmware_official_dev 735 B

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