chore: release Elixir 0.12
- fixed issue with bad uninstaller / herestring
This commit is contained in:
@@ -3,7 +3,7 @@
|
|||||||
<metadata>
|
<metadata>
|
||||||
<id>Elixir</id>
|
<id>Elixir</id>
|
||||||
<title>Elixir</title>
|
<title>Elixir</title>
|
||||||
<version>0.10.0</version>
|
<version>0.12.0</version>
|
||||||
<authors>Jose Valim</authors>
|
<authors>Jose Valim</authors>
|
||||||
<owners>Ethan J Brown</owners>
|
<owners>Ethan J Brown</owners>
|
||||||
<summary>Elixir is a functional meta-programming aware language built on top of the Erlang VM.</summary>
|
<summary>Elixir is a functional meta-programming aware language built on top of the Erlang VM.</summary>
|
||||||
|
@@ -1,5 +1,5 @@
|
|||||||
$package = 'Elixir'
|
$package = 'Elixir'
|
||||||
$version = '0.10.0'
|
$version = '0.12.0'
|
||||||
|
|
||||||
try {
|
try {
|
||||||
$params = @{
|
$params = @{
|
||||||
@@ -28,6 +28,14 @@ try {
|
|||||||
|
|
||||||
Install-ChocolateyPath $elixirBin
|
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
|
Write-ChocolateySuccess $package
|
||||||
} catch {
|
} catch {
|
||||||
Write-ChocolateyFailure $package "$($_.Exception.Message)"
|
Write-ChocolateyFailure $package "$($_.Exception.Message)"
|
||||||
|
@@ -21,13 +21,6 @@ try {
|
|||||||
|
|
||||||
[Environment]::SetEnvironmentVariable('Path', ($userPaths -join ';'), 'User')
|
[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
|
Write-ChocolateySuccess $package
|
||||||
} catch {
|
} catch {
|
||||||
Write-ChocolateyFailure $package "$($_.Exception.Message)"
|
Write-ChocolateyFailure $package "$($_.Exception.Message)"
|
||||||
|
Reference in New Issue
Block a user