We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a2ddb6a commit 84b1f65Copy full SHA for 84b1f65
Makefile
@@ -175,7 +175,11 @@ test_doc_test: compile
175
test_stdlib: compile
176
@ echo "==> elixir (exunit)"
177
$(Q) exec epmd & exit
178
- $(Q) cd lib/elixir && ../../bin/elixir -r "test/elixir/test_helper.exs" -pr "test/elixir/**/*_test.exs";
+ $(Q) if [ $(OS) = Windows_NT ]; then \
179
+ cd lib/elixir && cmd //C call ../../bin/elixir.bat -r "test/elixir/test_helper.exs" -pr "test/elixir/**/*_test.exs"; \
180
+ else \
181
+ cd lib/elixir && ../../bin/elixir -r "test/elixir/test_helper.exs" -pr "test/elixir/**/*_test.exs"; \
182
+ fi
183
184
#==> Dialyzer tasks
185
0 commit comments