Open sjmackenzie opened 8 years ago
So when using elm-make on nixos I get an error: elm-make: /homeless-shelter: createDirectory: permission denied (Permission denied)
elm-make
elm-make: /homeless-shelter: createDirectory: permission denied (Permission denied)
This means elm-make is writing to $HOME and nix specifically doesn't allow this so it makes the problem obvious by throwing a homeless-shelter error.
$HOME
nix
homeless-shelter
Ideally one could pass a --home arg to elm-make which allows one to override the $HOME.
--home
For more info see this issue: https://github.com/elm-lang/elm-make/issues/93 see the corresponding issue for elm-package: https://github.com/elm-lang/elm-package/issues/202
elm-package
So when using
elm-make
on nixos I get an error:elm-make: /homeless-shelter: createDirectory: permission denied (Permission denied)
This means
elm-make
is writing to$HOME
andnix
specifically doesn't allow this so it makes the problem obvious by throwing ahomeless-shelter
error.Ideally one could pass a
--home
arg toelm-make
which allows one to override the$HOME
.For more info see this issue: https://github.com/elm-lang/elm-make/issues/93 see the corresponding issue for
elm-package
: https://github.com/elm-lang/elm-package/issues/202