ScoopInstaller_Main/bucket/clink-completions.json
2022-08-26 08:29:54 +00:00

34 lines
1.1 KiB
JSON

{
"version": "0.4.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/0.4.0.zip",
"hash": "e922a54931a976e961df8ee40d2ac879efe7b4c3056d7c93d005136779f817de",
"extract_dir": "clink-completions-0.4.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/$version.zip",
"extract_dir": "clink-completions-$version"
}
}