Skip to content
This repository has been archived by the owner on Jan 25, 2019. It is now read-only.

Commit

Permalink
Updated Chocolatey build.
Browse files Browse the repository at this point in the history
  • Loading branch information
patriksvensson committed Nov 29, 2014
1 parent 765f462 commit 77f1fc3
Show file tree
Hide file tree
Showing 4 changed files with 9 additions and 6 deletions.
3 changes: 3 additions & 0 deletions ReleaseNotes.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,5 @@
### New in 0.0.2 (Released 2014/11/29)
* Updated Chocolatey build to point to the correct install file.

### New in 0.0.1 (Released 2014/11/29)
* First version of the Cake bootstrapper.
2 changes: 1 addition & 1 deletion build.cake
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ Task("Build-Chocolatey")
.Does(() =>
{
// Create chocolateyInstall.ps1 in chocolatey tools output.
var url = "https://github.com/cake-build/bootstrapper/releases/download/v" + version + "/Cake-Bootstrapper-v" + version + ".zip";
var url = "https://github.com/cake-build/bootstrapper/releases/download/v" + version + "/Cake-Bootstrapper-v" + version + ".msi";
string text = File.ReadAllText("./src/Chocolatey/tools/chocolateyInstall.ps1");
text = text.Replace("%DOWNLOAD_URL%", url);
File.WriteAllText(chocolateyToolsDirectory + "/chocolateyInstall.ps1", text);
Expand Down
4 changes: 2 additions & 2 deletions src/Chocolatey/Cake.Bootstrapper.nuspec
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="utf-8"?>
<package xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema">
<metadata xmlns="http://schemas.microsoft.com/packaging/2010/07/nuspec.xsd">
<id>cake.bootstrapper</id>
<title>Cake.Bootstrapper</title>
<id>Cake.Bootstrapper</id>
<title>Cake Bootstrapper</title>
<version>0.0.0</version>
<authors>Patrik Svensson</authors>
<owners>Patrik Svensson</owners>
Expand Down
6 changes: 3 additions & 3 deletions src/SolutionInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
using System.Reflection;

[assembly: AssemblyProduct("Cake")]
[assembly: AssemblyVersion("0.0.1")]
[assembly: AssemblyFileVersion("0.0.1")]
[assembly: AssemblyInformationalVersion("0.0.1")]
[assembly: AssemblyVersion("0.0.2")]
[assembly: AssemblyFileVersion("0.0.2")]
[assembly: AssemblyInformationalVersion("0.0.2")]
[assembly: AssemblyCopyright("Copyright (c) Patrik Svensson 2014")]

0 comments on commit 77f1fc3

Please sign in to comment.