Some checks failed
Periodic Merges (6h) / master → staging-nixos (push) Failing after 12m50s
Periodic Merges (6h) / master → staging-next (push) Failing after 12m54s
Periodic Merges (24h) / merge-base(master,staging) → haskell-updates (push) Failing after 11m54s
Periodic Merges (6h) / staging-next → staging (push) Failing after 12m13s
Periodic Merges (24h) / staging-next-25.05 → staging-25.05 (push) Failing after 13m24s
Periodic Merges (24h) / release-25.05 → staging-next-25.05 (push) Failing after 14m28s
24 lines
650 B
Diff
24 lines
650 B
Diff
diff --git a/functions/fenv.apply.fish b/functions/fenv.apply.fish
|
|
index 34a25e3..3d94135 100644
|
|
--- a/functions/fenv.apply.fish
|
|
+++ b/functions/fenv.apply.fish
|
|
@@ -27,11 +27,17 @@ function fenv.apply
|
|
for variable in $variables
|
|
set key (echo $variable | sed 's/=.*//')
|
|
set value (echo $variable | sed 's/[^=]*=//')
|
|
+ set ignore PATH _
|
|
|
|
if test "$key" = 'PATH'
|
|
set value (echo $value | tr ':' '\n')
|
|
end
|
|
|
|
- set -g -x $key $value
|
|
+ if contains $key $ignore
|
|
+ set -g -x $key $value 2>/dev/null
|
|
+ else
|
|
+ set -g -x $key $value
|
|
+ end
|
|
+
|
|
end
|
|
end
|