Skip to content

Commit

Permalink
Changed ENV variable name to allow for custom paths
Browse files Browse the repository at this point in the history
# Conflicts:
#	lib/core.ps1
  • Loading branch information
CEbbinghaus committed Feb 27, 2024
1 parent 48f7935 commit 117cfad
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 10 deletions.
21 changes: 14 additions & 7 deletions lib/core.ps1
Expand Up @@ -739,6 +739,13 @@ public static extern IntPtr SendMessageTimeout(
}

function env($name, $global, $val = '__get') {
if(-not $name) {
$name = [environment]::getEnvironmentVariable("SCOOP_ENV", "User")
if(-not $name) {
$name = 'PATH'
}
}

$RegisterKey = if ($global) {
Get-Item -Path 'HKLM:\SYSTEM\CurrentControlSet\Control\Session Manager'
} else {
Expand Down Expand Up @@ -1010,7 +1017,7 @@ function get_shim_path() {
}

function search_in_path($target) {
$path = (env 'PATH' $false) + ";" + (env 'PATH' $true)
$path = (env $Null $false) + ";" + (env $Null $true)
foreach($dir in $path.split(';')) {
if(test-path "$dir\$target" -pathType leaf) {
return "$dir\$target"
Expand All @@ -1019,12 +1026,12 @@ function search_in_path($target) {
}

function ensure_in_path($dir, $global) {
$path = env 'PATH' $global
$path = env $Null $global
$dir = fullpath $dir
if($path -notmatch [regex]::escape($dir)) {
write-output "Adding $(friendly_path $dir) to $(if($global){'global'}else{'your'}) path."

env 'PATH' $global "$dir;$path" # for future sessions...
env $Null $global "$dir;$path" # for future sessions...
$env:PATH = "$dir;$env:PATH" # for this session
}
}
Expand Down Expand Up @@ -1113,8 +1120,8 @@ function add_first_in_path($dir, $global) {
$dir = fullpath $dir

# future sessions
$null, $currpath = strip_path (env 'path' $global) $dir
env 'path' $global "$dir;$currpath"
$null, $currpath = strip_path (env $Null $global) $dir
env $Null $global "$dir;$currpath"

# this session
$null, $env:PATH = strip_path $env:PATH $dir
Expand All @@ -1125,10 +1132,10 @@ function remove_from_path($dir, $global) {
$dir = fullpath $dir

# future sessions
$was_in_path, $newpath = strip_path (env 'path' $global) $dir
$was_in_path, $newpath = strip_path (env $Null $global) $dir
if($was_in_path) {
Write-Output "Removing $(friendly_path $dir) from your path."
env 'path' $global $newpath
env $Null $global $newpath
}

# current session
Expand Down
6 changes: 3 additions & 3 deletions lib/install.ps1
Expand Up @@ -946,16 +946,16 @@ function unlink_current($versiondir) {

# to undo after installers add to path so that scoop manifest can keep track of this instead
function ensure_install_dir_not_in_path($dir, $global) {
$path = (env 'path' $global)
$path = (env $Null $global)

$fixed, $removed = find_dir_or_subdir $path "$dir"
if($removed) {
$removed | ForEach-Object { "Installer added '$(friendly_path $_)' to path. Removing."}
env 'path' $global $fixed
env $Null $global $fixed
}

if(!$global) {
$fixed, $removed = find_dir_or_subdir (env 'path' $true) "$dir"
$fixed, $removed = find_dir_or_subdir (env $Null $true) "$dir"
if($removed) {
$removed | ForEach-Object { warn "Installer added '$_' to system path. You might want to remove this manually (requires admin permission)."}
}
Expand Down

0 comments on commit 117cfad

Please sign in to comment.