We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8891636 commit e2148e0Copy full SHA for e2148e0
build.cake
@@ -356,7 +356,7 @@ Task("Pack-Chocolatey")
356
357
var files = GetFiles(artifactPath + "/**/*.*")
358
.Select(file => new ChocolateyNuSpecContent { Source = file.FullPath, Target = file.FullPath.Replace(artifactPath, "") });
359
- var txtFiles = GetFiles("./nuspec/*.txt")
+ var txtFiles = (GetFiles("./nuspec/*.txt") + GetFiles("./nuspec/*.ps1"))
360
.Select(file => new ChocolateyNuSpecContent { Source = file.FullPath, Target = file.GetFilename().ToString() });
361
362
ChocolateyPack(package.NuspecPath, new ChocolateyPackSettings {
0 commit comments