ScoopInstaller_Main/bucket/clink-completions.json
2024-10-14 16:29:52 +00:00

34 lines
1.1 KiB
JSON

{
"version": "0.6.0",
"description": "Completions for various commands through Clink",
"homepage": "https://github.com/vladimir-kotikov/clink-completions",
"license": "MIT",
"suggest": {
"Clink": "clink"
},
"url": "https://github.com/vladimir-kotikov/clink-completions/archive/v0.6.0.zip",
"hash": "a3668c6960a41abd2a07101791ec34c32d09dedec699b3dfd360a6bdd0de5ef6",
"extract_dir": "clink-completions-0.6.0",
"installer": {
"script": [
"if (Get-Command clink -ErrorAction SilentlyContinue) {",
" clink installscripts \"$dir\"",
"} else {",
" warn 'Clink installation not found. Please manually install these scripts.'",
"}"
]
},
"uninstaller": {
"script": [
"if (Get-Command clink -ErrorAction SilentlyContinue) {",
" clink uninstallscripts \"$dir\"",
"}"
]
},
"checkver": "github",
"autoupdate": {
"url": "https://github.com/vladimir-kotikov/clink-completions/archive/v$version.zip",
"extract_dir": "clink-completions-$version"
}
}