Improve winget support

This commit is contained in:
crschnick 2024-03-09 03:56:54 +00:00
parent fbfe4bdf4b
commit 64ee40afb0
2 changed files with 4 additions and 1 deletions

View file

@ -83,7 +83,9 @@ If you don't like installers, you can also use a portable version that is packag
- [Windows .zip Portable (x86-64)](https://github.com/xpipe-io/xpipe/releases/latest/download/xpipe-portable-windows-x86_64.zip)
Alternatively, you can also use [choco](https://community.chocolatey.org/packages/xpipe) to install it with `choco install xpipe`.
Alternatively, you can also use the following package managers:
- [choco](https://community.chocolatey.org/packages/xpipe) to install it with `choco install xpipe`.
- [winget](https://github.com/microsoft/winget-cli) to install it with `winget install xpipe-io.xpipe --source winget`.
## Linux

1
dist/build.gradle vendored
View file

@ -88,5 +88,6 @@ if (rootProject.fullVersion) {
apply from: 'aur.gradle'
apply from: 'nix.gradle'
apply from: 'choco.gradle'
apply from: 'winget.gradle'
apply from: 'install.gradle'
}