Where can I set path to make.exe on Windows?

后端 未结 5 1224
鱼传尺愫
鱼传尺愫 2020-12-24 01:49

When I try run make from cmd-console on Windows, it runs Turbo Delphi\'s make.exe but I need MSYS\'s make.exe. There is no mention abo

5条回答
  •  温柔的废话
    2020-12-24 02:03

    Or you can just run power-shell command to append extra folder to the existing path:

    $env:Path += ";C:\temp\terraform" 
    

提交回复
热议问题