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
2 changes: 1 addition & 1 deletion Erlang/erlang.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ OTP is set of Erlang libraries and design principles providing middle-ware to de
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://github.com/smerchek/nugetpackages/raw/master/Erlang/erlang-logo.png</iconUrl>
<packageSourceUrl>https://github.com/ElixirWin/ChocolateyPackages/tree/master/Erlang</packageSourceUrl>
<releaseNotes>https://erlang.org/download/OTP-24.0.README</releaseNotes>
<releaseNotes>https://github.com/erlang/otp/blob/OTP-24.1.5/README.md</releaseNotes>
<docsUrl>http://erlang.org/doc/search/</docsUrl>
<mailingListUrl>http://erlang.org/mailman/listinfo/erlang-questions</mailingListUrl>
<bugTrackerUrl>https://bugs.erlang.org/secure/Dashboard.jspa</bugTrackerUrl>
Expand Down
10 changes: 5 additions & 5 deletions Erlang/tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
Expand Up @@ -4,21 +4,21 @@ An install script for installing Erlang silently on the machine via ChocolateyNu

.NOTES
Author: Onorio Catenacci - catenacci@ieee.org
Version: 24.0
Version: 24.1.5
#>

$package = 'erlang'
$version = '24.0'
$erl_version = '12.0'
$version = '24.1.5'
$erl_version = '12.1.5'

$params = @{
PackageName = $package
FileType = 'exe'
SilentArgs = '/S'
Url = "https://erlang.org/download/otp_win32_$version.exe"
Url = "https://github.com/erlang/otp/releases/download/OTP-$version/otp_win32_$version.exe"
CheckSum = 'ccc1e5918aefb543d2b5e7547c44e1b1ff66d62cd4ea74dd4782f694a6de8a44'
CheckSumType = 'sha256'
Url64 = "https://erlang.org/download/otp_win64_$version.exe"
Url64 = "https://github.com/erlang/otp/releases/download/OTP-$version/otp_win64_$version.exe"
CheckSum64 = 'f13311ae26d5260566740f8a7f124d0ba3589a1f52aada84b236825641f53225'
CheckSumType64 = 'sha256'
validExitCodes = @(0)
Expand Down
4 changes: 2 additions & 2 deletions Erlang/tools/chocolateyUninstall.ps1
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
$package = 'erlang'
$version = '24.0'
$erl_version = '12.0'
$version = '24.1.5'
$erl_version = '12.1.5'

Start-Process -Wait "$env:ProgramFiles\erl-$version\uninstall.exe" -ArgumentList "/S"

Expand Down