Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions Elixir/Elixir.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<metadata>
<id>elixir</id>
<title>Elixir</title>
<version>1.9.1</version>
<version>1.9.4-otp22</version>
<authors>Jose Valim</authors>
<owners>Onorio Catenacci</owners>
<summary>Elixir is a functional meta-programming aware language built on top of the Erlang VM.</summary>
Expand All @@ -24,7 +24,7 @@ Finally, Elixir and Erlang share the same bytecode and data types. This means yo
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://secure.gravatar.com/avatar/4c5c2c297ed9f4664cfbe7733a011fb2?s=400&amp;d=https://a248.e.akamai.net/assets.github.com%2Fimages%2Fgravatars%2Fgravatar-user-420.png</iconUrl>
<dependencies>
<dependency id="erlang" version="18.0.20150709.2"/>
<dependency id="erlang" version="22.1"/>
</dependencies>
</metadata>
<files>
Expand Down
6 changes: 3 additions & 3 deletions Elixir/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
$package = 'Elixir'

$version = '1.9.1'
$version = '1.9.4'
$params = @{
PackageName = $package
FileType = 'zip'
CheckSum = '17e43cb1627a0fa5625bc370cec0964ad6471ef242f1549e316db73c0d94fcc6'
CheckSum = '10405B5E63549DC65C6A6AB83FAF0EC94BDAF5CC3ED5E71EBA3432D882BAAF8B'
CheckSumType = 'sha256'
Url = "https://github.com/elixir-lang/elixir/releases/download/v$version/Precompiled.zip"
Url = "https://repo.hex.pm/builds/elixir/v$version-otp-22.zip"

UnzipLocation = $env:chocolateyPackageFolder;
}
Expand Down
10 changes: 2 additions & 8 deletions Elixir/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -1,11 +1,5 @@
$package = 'Elixir'
$version = '1.9.4'

Uninstall-ChocolateyZipPackage $packageName $package $zipFileName 'Precompiled.zip'

#And insure we remove the shortcuts to the batch files as well
#This is solely present for prior versions of the Elixir CNG package.
Remove-Item "$env:ChocolateyInstall/bin/iex.bat"
Remove-Item "$env:ChocolateyInstall/bin/elixir.bat"
Remove-Item "$env:ChocolateyInstall/bin/elixirc.bat"
Remove-Item "$env:ChocolateyInstall/bin/mix.bat"
Uninstall-ChocolateyZipPackage $packageName $package $zipFileName 'v$version-otp-22.zip'