-
Notifications
You must be signed in to change notification settings - Fork 27
Modus Go build failing Win11 #676
Description
Bug Description
Modus Go build fails in Win11. It shows that the user path is not found (eg: "C:/Users/..." is not recognized as an internal or external command, operable program or batch file.).
I have installed all the required dependencies, to my knowledge.
To Reproduce
Steps to reproduce the behavior:
modus new- Selected Go SDK
- Tried
modus devandmodus build - Throws this error
Expected behavior
Build should succeed. 😅
Environment
- OS: Windows 11 (Not sure about the other OS's)
- Go
- v0.16.0
Partial Solution in the CLI tool
Added the following line after line 78 in dist/commands/build/index.js:
buildTool = '"' + buildTool + '"';
However, the build still fails with a long (I think) go, wasm related error:
error: unable to make temporary file: No such file or directory error: unable to make temporary file: No such file or directory failed to build C:\Users\username\scoop\apps\tinygo\current\src\internal\task\task_asyncify_wasm.S: exit status 1 Error building wasm: exit status 1
Please let me know the solution for this issue.