From 09965467f402528f6ef5005c986f8c7ff68bcc29 Mon Sep 17 00:00:00 2001 From: Steve-O-Cassels Date: Tue, 29 Mar 2016 15:58:30 +0100 Subject: [PATCH] Fix windows set environment cmd Great project, thank you! The example for setting a session based environment variable for establishing your Elixir environment is incorrect. It uses the `-A` flag which [is for expressions](http://ss64.com/nt/set.html) like setting a variable to the result of '1 + 2' --- getting-started/mix-otp/introduction-to-mix.markdown | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/getting-started/mix-otp/introduction-to-mix.markdown b/getting-started/mix-otp/introduction-to-mix.markdown index d53fc3db9..bd94fd7f3 100644 --- a/getting-started/mix-otp/introduction-to-mix.markdown +++ b/getting-started/mix-otp/introduction-to-mix.markdown @@ -255,7 +255,7 @@ $ MIX_ENV=prod mix compile Or on Windows: ```batch -> set /a "MIX_ENV=prod" && mix compile +> set "MIX_ENV=prod" && mix compile ``` ## Exploring