Skip to content

Commit

Permalink
Merge pull request #5 from rlespinasse/release/3.0.0-incubation-M2
Browse files Browse the repository at this point in the history
golo 3.0.0-incubation-M2 released
  • Loading branch information
rlespinasse committed Sep 7, 2015
2 parents 7e5b6b4 + 8f39501 commit 5c7649a
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 9 deletions.
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,13 +4,13 @@

## Golo Windows Package

[Golo](https://github.com/golo-lang/golo-lang), a lightweight dynamic language for the JVM with the [Chocolatey project](https://chocolatey.org/)
[Golo](https://github.com/eclipse/golo-lang), a lightweight dynamic language for the JVM with the [Chocolatey project](https://chocolatey.org/)

### Installation

```shell
C:> choco install golo
```

* [Source](https://github.com/golo-lang/golo-lang/releases/tag/v2.0.0)
* [Chocolatey Package](https://chocolatey.org/packages/golo/2.0.0)
* [Source](https://github.com/eclipse/golo-lang/releases/tag/milestone%2F3.0.0-incubation-M2)
* [Chocolatey Package](https://chocolatey.org/packages/golo)
4 changes: 2 additions & 2 deletions golo.nuspec
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<metadata>
<id>golo</id>
<title>Golo</title>
<version>3.0.0-incubation-M1</version>
<version>3.0.0-incubation-M2</version>
<authors>Golo-Lang Contributors</authors>
<owners>Eclipse Foundation</owners>
<summary>Golo, a lightweight dynamic language for the JVM.</summary>
Expand All @@ -15,7 +15,7 @@
<licenseUrl>http://www.eclipse.org/legal/epl-v10.html</licenseUrl>
<requireLicenseAcceptance>false</requireLicenseAcceptance>
<iconUrl>https://cdn.rawgit.com/TomOne/various/4ed1815b35a3a442da806ea1223b7fe08b8c425b/golo.png</iconUrl>
<releaseNotes>http://golo-lang.org/news/2015/07/27/golo-3.0.0-milestone1</releaseNotes>
<releaseNotes>http://golo-lang.org/news/2015/09/07/golo-3.0.0-milestone2</releaseNotes>
</metadata>
<files>
<file src="tools\**" target="tools" />
Expand Down
8 changes: 4 additions & 4 deletions tools/chocolateyInstall.ps1
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
try {
$package = 'golo'

$installDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$installDir = "$(Split-Path -parent $MyInvocation.MyCommand.Definition)"
$binRoot = Get-BinRoot
$installDir = Join-Path $binRoot $package
Write-Host "Adding `'$installDir`' to the path and the current shell path"
$zipUrl = 'https://www.eclipse.org/downloads/download.php?file=/golo/golo-3.0.0-incubation-M1-distribution.zip&r=1'
$zipUrl = 'https://www.eclipse.org/downloads/download.php?file=/golo/golo-3.0.0-incubation-M2.zip&r=1'

Install-ChocolateyZipPackage 'golo' "$zipUrl" "$binRoot"

Install-ChocolateyPath "$installDir\bin" 'User' # Machine will assert administrative rights

Write-ChocolateySuccess 'golo'
} catch {
Write-ChocolateyFailure 'golo' "$($_.Exception.Message)"
throw
throw
}

0 comments on commit 5c7649a

Please sign in to comment.