mirror of
https://github.com/NixOS/nixpkgs.git
synced 2025-06-11 04:05:40 +03:00

Init patchRcPath hooks, which provides utilities to patch shell scripts to be sourced by users. Add test cases and documentation.
9 lines
196 B
Fish
9 lines
196 B
Fish
begin
|
|
for p in $PATH
|
|
if test $p != "$PWD/bravo"
|
|
set TEMPORARY_PATH $TEMPORARY_PATH $p
|
|
end
|
|
end
|
|
set -g PATH $TEMPORARY_PATH
|
|
end
|
|
set PATH "$PWD/charlie" $PATH
|