Skip to content
This repository has been archived by the owner on Apr 13, 2023. It is now read-only.

Commit

Permalink
Fix chocolatey script
Browse files Browse the repository at this point in the history
  • Loading branch information
MathewSachin committed May 23, 2017
1 parent 73dc619 commit 988bea5
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
4 changes: 3 additions & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,8 +81,10 @@ after_build:
$installScript = "choco/tools/chocolateyinstall.ps1";
$scriptContent = "`n`n" + (Get-Content $installScript);
# Update chocolatey install script
Set-Content $installScript (('$tag = "{0}";`n$checksum = "{1}";`n`n{2}') -f $env:APPVEYOR_REPO_TAG_NAME, $checksum, (Get-Content $installScript));
Set-Content $installScript (('$tag = "{0}"; $checksum = "{1}";{2}') -f $env:APPVEYOR_REPO_TAG_NAME, $checksum, $scriptContent);
choco pack choco/captura.nuspec --version $env:AppVersion;
Push-AppVeyorArtifact "captura.$env:AppVersion.nupkg" -DeploymentName Chocolatey;
Expand Down
2 changes: 1 addition & 1 deletion src/Captura/Properties/AssemblyInfo.cs
Original file line number Diff line number Diff line change
Expand Up @@ -6,4 +6,4 @@
[assembly: AssemblyProduct("Captura")]
[assembly: AssemblyCopyright("(c) 2016 Mathew Sachin")]
[assembly: AssemblyTrademark("Captura")]
[assembly: AssemblyVersion("3.1.0")]
[assembly: AssemblyVersion("3.2.0")]

0 comments on commit 988bea5

Please sign in to comment.