Skip to content

Commit

Permalink
Fixed choco deploy script
Browse files Browse the repository at this point in the history
  • Loading branch information
michaelstaib committed Nov 5, 2017
1 parent 879bd70 commit 5339f4b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/chocolatey.ps1
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
param([string]$Version, [string]$ApiKey)

$packageDir = Join-Path -Path $PSScriptRoot -ChildPath "chocolatey"
$nuspec = Join-Path -Path $packageDir -ChildPath "esgen.nuspec"
$nupkg = Join-Path -Path $packageDir -ChildPath "esgen.$Version.nupkg"
$nuspec = Join-Path -Path $packageDir -ChildPath "thorgen.nuspec"
$nupkg = Join-Path -Path $packageDir -ChildPath "Thor.Generator.$Version.nupkg"
$installScript = Join-Path -Path $packageDir -ChildPath "tools/chocolateyInstall.ps1"

$installScriptContent = [System.IO.File]::ReadAllText($installScript)
Expand Down

0 comments on commit 5339f4b

Please sign in to comment.