mirror of
https://github.com/JanDeDobbeleer/oh-my-posh.git
synced 2024-12-26 19:39:39 -08:00
fix(winget): add switches to install silently
This commit is contained in:
parent
53470eb3cb
commit
b93ab4e82d
|
@ -9,7 +9,7 @@ AppSupportURL=https://github.com/JanDeDobbeleer/oh-my-posh/issues
|
|||
LicenseFile="bin\COPYING.txt"
|
||||
OutputBaseFilename=install
|
||||
PrivilegesRequired=lowest
|
||||
PrivilegesRequiredOverridesAllowed=commandline dialog
|
||||
PrivilegesRequiredOverridesAllowed=dialog
|
||||
|
||||
[Files]
|
||||
Source: "bin\oh-my-posh.exe"; DestDir: "{app}\bin"
|
||||
|
|
|
@ -7,12 +7,32 @@ InstallerType: inno
|
|||
Scope: user
|
||||
InstallModes:
|
||||
- interactive
|
||||
- silent
|
||||
- silentWithProgress
|
||||
Installers:
|
||||
- Architecture: x64
|
||||
InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v<VERSION>/install-amd64.exe
|
||||
InstallerSha256: <HASH-AMD64>
|
||||
Scope: machine
|
||||
InstallerSwitches:
|
||||
Custom: /ALLUSERS
|
||||
- Architecture: x64
|
||||
InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v<VERSION>/install-amd64.exe
|
||||
InstallerSha256: <HASH-AMD64>
|
||||
Scope: user
|
||||
InstallerSwitches:
|
||||
Custom: /CURRENTUSER
|
||||
- Architecture: arm64
|
||||
InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v<VERSION>/install-arm64.exe
|
||||
InstallerSha256: <HASH-ARM64>
|
||||
Scope: machine
|
||||
InstallerSwitches:
|
||||
Custom: /ALLUSERS
|
||||
- Architecture: arm64
|
||||
InstallerUrl: https://github.com/JanDeDobbeleer/oh-my-posh/releases/download/v<VERSION>/install-arm64.exe
|
||||
InstallerSha256: <HASH-ARM64>
|
||||
Scope: user
|
||||
InstallerSwitches:
|
||||
Custom: /CURRENTUSER
|
||||
ManifestType: installer
|
||||
ManifestVersion: 1.0.0
|
||||
|
|
Loading…
Reference in a new issue