-
Notifications
You must be signed in to change notification settings - Fork 40
Open
Labels
Description
Hello!
I already posted this on spago repository, but maybe it is best suited here, so please forgive me if this duplication causes any problem or overload the same team in some way.
I'm having problems on macOS to run spago build using psgo as backend.
I have Go toolchain installed and I can run go in any terminal.
Here is my spago.dhall:
{ name = "my-project"
, dependencies = [ "console", "effect", "psci-support" ]
, packages = ./packages.dhall
, sources = [ "src/**/*.purs", "test/**/*.purs" ]
, backend = "psgo"
}
And here is the error I'm getting:
➜ spago build
[info] Installation complete.
[info] Build succeeded.
/bin/sh: psgo: command not found
[error] Backend "psgo" exited with error:127
I followed all the isntruction shtat I have found and I'm not sure what else should I try or install.
Compiling to JS has no problems.
Thanks in advance.