-
Notifications
You must be signed in to change notification settings - Fork 11
/
Chocolatey.json
36 lines (36 loc) · 1.15 KB
/
Chocolatey.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
{
"homepage": "https://chocolatey.org/",
"description": "The package manager for Windows",
"version": "2.4.1",
"url": "https://chocolatey.org/install.ps1",
"hash": "44e045ed5350758616d664c5af631e7f2cd10165f5bf2bd82cbf3a0bb8f63462",
"installer": {
"script": [
"$env:ChocolateyInstall=\"$dir\" ",
"Set-ExecutionPolicy Bypass -Scope Process -Force;",
"[System.Net.ServicePointManager]::SecurityProtocol = [System.Net.ServicePointManager]::SecurityProtocol -bor 3072;",
"iex(\"$dir\\install.ps1\")",
" . $profile"
]
},
"bin": [
"bin/choco.exe",
"bin/chocolatey.exe",
"bin/cinst.exe",
"bin/clist.exe",
"bin/cpack.exe",
"bin/cpush.exe",
"bin/cuninst.exe",
"bin/cup.exe",
"bin/cver.exe",
"bin/RefreshEnv.cmd"
],
"checkver": {
"url": "https://github.com/chocolatey/choco/releases",
"re": "/chocolatey/choco/releases/tag/([\\d.]+)"
},
"autoupdate": {
"url": "https://chocolatey.org/install.ps1"
},
"notes": "It might be better to run choco with sudo."
}