Skip to content

Commit 0c7699f

Browse files
author
José Valim
committed
Merge pull request #2541 from chyndman/mix-bat-exec-directly
Call Mix.start, Mix.CLI.main directly in bin\mix.bat
2 parents 1086a84 + 2d0fbcc commit 0c7699f

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

bin/mix

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,4 @@
11
#!/usr/bin/env elixir
2+
# Reminder: apply any changes in this file to bin\mix.bat
23
Mix.start
34
Mix.CLI.main

bin/mix.bat

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
@echo off
2-
call "%~dp0\elixir.bat" "%~dps0\mix" %*
2+
call "%~dp0\elixir.bat" -e Mix.start -e Mix.CLI.main %*

0 commit comments

Comments
 (0)