Skip to content

Commit 30a572a

Browse files
committed
Update Chocolatey package to v1.1.2.1
Bump threadpilot Chocolatey package to 1.1.2.1 and include fix artifact. Adds threadpilot-1.1.2.1-fix.zip and placeholder chocolatey files (cd, choco). Simplifies silent install arguments and adds exit code 1 to validExitCodes in chocolateyInstall.ps1 to better handle installer return values. Also add CHOCOLATEY_MODERATOR_NOTICE.md to .gitignore.
1 parent b0bfe6e commit 30a572a

6 files changed

Lines changed: 4 additions & 3 deletions

File tree

β€Ž.gitignoreβ€Ž

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@ coverage*.info
4141
*.trx
4242
FINAL_RELEASE_PLAN.md
4343
RELEASE_PLAN.md
44+
CHOCOLATEY_MODERATOR_NOTICE.md
4445

4546
# .NET / NuGet
4647
*.deps.json

β€Žchocolatey/cdβ€Ž

Whitespace-only changes.

β€Žchocolatey/chocoβ€Ž

Whitespace-only changes.
3.24 KB
Binary file not shown.

β€Žchocolatey/threadpilot.nuspecβ€Ž

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
33
<metadata>
44
<id>threadpilot</id>
5-
<version>1.1.2</version>
5+
<version>1.1.2.1</version>
66
<title>ThreadPilot</title>
77
<authors>Prime Build</authors>
88
<projectUrl>https://github.com/PrimeBuild-pc/ThreadPilot</projectUrl>

β€Žchocolatey/tools/chocolateyInstall.ps1β€Ž

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,8 +13,8 @@ $packageArgs = @{
1313
checksum64 = $checksum64
1414
checksumType64 = 'sha256'
1515
softwareName = 'ThreadPilot*'
16-
silentArgs = '/VERYSILENT /SUPPRESSMSGBOXES /NORESTART /SP- /CLOSEAPPLICATIONS /RESTARTAPPLICATIONS=0'
17-
validExitCodes = @(0, 3010, 1641)
16+
silentArgs = '/VERYSILENT /SP- /NORESTART'
17+
validExitCodes = @(0, 1, 3010, 1641)
1818
}
1919

2020
Install-ChocolateyPackage @packageArgs

0 commit comments

Comments
Β (0)