-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- в пакет NuGet включён msi непосредственно (#149) (для облегчения те…
…стирования)
- Loading branch information
1 parent
4d56077
commit d19b60a
Showing
6 changed files
with
49 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
/sources/*/*.msi |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
8 changes: 4 additions & 4 deletions
8
...colatey/font.gost2.304-81.install/sources/font.gost2.304-81.install/chocolateyInstall.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
Install-ChocolateyPackage ` | ||
-packageName '{{PackageName}}' ` | ||
Install-ChocolateyInstallPackage ` | ||
-packageName $env:chocolateyPackageName ` | ||
-installerType msi ` | ||
-silentArgs "/qn /norestart /l*v `"$env:TEMP\chocolatey\{{PackageName}}.{{PackageVersion}}\MsiInstall.log`"" ` | ||
-url "https://github.com/Metrolog/Font.GOST2.304-81/releases/download/v{{PackageVersion}}/GOST2.304-81.msi" ` | ||
-silentArgs '/qn /norestart' ` | ||
-filePath ( ( Get-Item '*.msi' )[0].Name ) ` | ||
-validExitCodes = @(0, 3010, 1641) ` | ||
; |
4 changes: 2 additions & 2 deletions
4
...latey/font.gost2.304-81.install/sources/font.gost2.304-81.install/chocolateyUninstall.ps1
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
Uninstall-ChocolateyPackage ` | ||
-packageName '{{PackageName}}' ` | ||
-packageName $env:chocolateyPackageName ` | ||
-installerType msi ` | ||
-silentArgs "{{PackageGUID}} /qn /norestart /l*v `"$env:TEMP\chocolatey\{{PackageName}}.{{PackageVersion}}\MsiUninstall.log`"" ` | ||
-silentArgs "$( ( Get-Item '*.msi' )[0].Name ) /qn /norestart" ` | ||
-validExitCodes = @(0, 3010, 1641) ` | ||
; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters