forked from ScoopInstaller/Scoop
-
Notifications
You must be signed in to change notification settings - Fork 0
/
psmodules.ps1
59 lines (46 loc) · 1.87 KB
/
psmodules.ps1
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
56
57
58
59
$modulesdir = "$scoopdir\modules"
function install_psmodule($manifest, $dir, $global) {
$psmodule = $manifest.psmodule
if(!$psmodule) { return }
if($global) {
abort "Installing PowerShell modules globally is not implemented!"
}
$modulesdir = ensure $modulesdir
ensure_in_psmodulepath $modulesdir $global
$module_name = $psmodule.name
if(!$module_name) {
abort "Invalid manifest: The 'name' property is missing from 'psmodule'."
}
$linkfrom = "$modulesdir\$module_name"
write-host "Installing PowerShell module '$module_name'"
write-host "Linking $(friendly_path $linkfrom) => $(friendly_path $dir)"
if(test-path $linkfrom) {
warn "$(friendly_path $linkfrom) already exists. It will be replaced."
& "$env:COMSPEC" /c "rmdir `"$linkfrom`""
}
& "$env:COMSPEC" /c "mklink /j `"$linkfrom`" `"$dir`"" | out-null
}
function uninstall_psmodule($manifest, $dir, $global) {
$psmodule = $manifest.psmodule
if(!$psmodule) { return }
$module_name = $psmodule.name
write-host "Uninstalling PowerShell module '$module_name'."
$linkfrom = "$modulesdir\$module_name"
if(test-path $linkfrom) {
write-host "Removing $(friendly_path $linkfrom)"
$linkfrom = resolve-path $linkfrom
& "$env:COMSPEC" /c "rmdir `"$linkfrom`""
}
}
function ensure_in_psmodulepath($dir, $global) {
$path = env 'psmodulepath' $global
if(!$global -and $null -eq $path) {
$path = "$env:USERPROFILE\Documents\WindowsPowerShell\Modules"
}
$dir = fullpath $dir
if($path -notmatch [regex]::escape($dir)) {
write-output "Adding $(friendly_path $dir) to $(if($global){'global'}else{'your'}) PowerShell module path."
env 'psmodulepath' $global "$dir;$path" # for future sessions...
$env:psmodulepath = "$dir;$env:psmodulepath" # for this session
}
}