diff --git a/Elixir/Elixir.nuspec b/Elixir/Elixir.nuspec index aaab287..d29945d 100644 --- a/Elixir/Elixir.nuspec +++ b/Elixir/Elixir.nuspec @@ -3,7 +3,7 @@ Elixir Elixir - 0.10.0 + 0.12.0 Jose Valim Ethan J Brown Elixir is a functional meta-programming aware language built on top of the Erlang VM. diff --git a/Elixir/tools/chocolateyInstall.ps1 b/Elixir/tools/chocolateyInstall.ps1 index b5f56ef..aed6877 100644 --- a/Elixir/tools/chocolateyInstall.ps1 +++ b/Elixir/tools/chocolateyInstall.ps1 @@ -1,5 +1,5 @@ $package = 'Elixir' -$version = '0.10.0' +$version = '0.12.0' try { $params = @{ @@ -28,6 +28,14 @@ try { Install-ChocolateyPath $elixirBin + Write-Host @' +Please restart your current shell session to access Elixir commands: +elixir +elixirc +mix +iex.bat (use batch file within Powershell due to name collision) +'@ + Write-ChocolateySuccess $package } catch { Write-ChocolateyFailure $package "$($_.Exception.Message)" diff --git a/Elixir/tools/chocolateyUninstall.ps1 b/Elixir/tools/chocolateyUninstall.ps1 index 391b10d..44012a8 100644 --- a/Elixir/tools/chocolateyUninstall.ps1 +++ b/Elixir/tools/chocolateyUninstall.ps1 @@ -21,13 +21,6 @@ try { [Environment]::SetEnvironmentVariable('Path', ($userPaths -join ';'), 'User') - Write-Host @'Please restart your current shell session to access Elixir commands: - elixir - elixirc - mix - iex.bat (use batch file within Powershell due to name collision) - '@ - Write-ChocolateySuccess $package } catch { Write-ChocolateyFailure $package "$($_.Exception.Message)"