-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathgsudo.json
55 lines (55 loc) · 1.59 KB
/
gsudo.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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
{
"version": "2.6.0",
"description": "A Sudo for Windows",
"homepage": "https://gerardog.github.io/gsudo",
"license": "MIT",
"notes": [
"gsudo has a PowerShell module that adds `gsudo !!` to elevate the last command.",
"Use the module by running: 'Import-Module gsudoModule'.",
"Add it to your $PROFILE to make it permanent."
],
"url": "https://github.com/gerardog/gsudo/releases/download/v2.6.0/gsudo.portable.zip",
"hash": "fe3e65a43efbebb2abfcf4493ddbea3dcffe5eb2f5d852e355c69b947fad6c95",
"architecture": {
"64bit": {
"extract_dir": "x64"
},
"32bit": {
"extract_dir": "x86"
},
"arm64": {
"extract_dir": "arm64"
}
},
"env_add_path": ".",
"bin": [
[
"gsudo.exe",
"sudo"
]
],
"psmodule": {
"name": "gsudoModule"
},
"post_install": "try { & \"$dir\\gsudo.exe\" -k 2>&1 | Out-Null } catch { info $_.Exception.Message }",
"checkver": {
"github": "https://github.com/gerardog/gsudo"
},
"autoupdate": {
"url": "https://github.com/gerardog/gsudo/releases/download/v$version/gsudo.portable.zip",
"architecture": {
"64bit": {
"extract_dir": "x64"
},
"32bit": {
"extract_dir": "x86"
},
"arm64": {
"extract_dir": "arm64"
}
},
"hash": {
"url": "$url.sha256"
}
}
}