diff --git a/README.md b/README.md
index 501dfa6..f5b5231 100644
--- a/README.md
+++ b/README.md
@@ -4,7 +4,7 @@
## 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
@@ -12,5 +12,5 @@
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)
diff --git a/golo.nuspec b/golo.nuspec
index 3b9fd0f..c2fd7a9 100644
--- a/golo.nuspec
+++ b/golo.nuspec
@@ -4,7 +4,7 @@
golo
Golo
- 3.0.0-incubation-M1
+ 3.0.0-incubation-M2
Golo-Lang Contributors
Eclipse Foundation
Golo, a lightweight dynamic language for the JVM.
@@ -15,7 +15,7 @@
http://www.eclipse.org/legal/epl-v10.html
false
https://cdn.rawgit.com/TomOne/various/4ed1815b35a3a442da806ea1223b7fe08b8c425b/golo.png
- http://golo-lang.org/news/2015/07/27/golo-3.0.0-milestone1
+ http://golo-lang.org/news/2015/09/07/golo-3.0.0-milestone2
diff --git a/tools/chocolateyInstall.ps1 b/tools/chocolateyInstall.ps1
index 505118c..626d0c3 100644
--- a/tools/chocolateyInstall.ps1
+++ b/tools/chocolateyInstall.ps1
@@ -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
}