I don't use Windows but I think this should work: set "MIX_ENV=test" && mix compile.
- Dogbert
1 Answers
1
votes
Like @Dogbert said, in Windows you have to use the set command:
set MIX_ENV=test && mix compile
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.OkRead more
set "MIX_ENV=test" && mix compile. - Dogbert