Make nix wrapper scripts resilient to unkeyed NIX_PATH entries
Alan Pearce alan@alanpearce.eu
Tue, 21 May 2024 07:33:27 +0200
1 files changed, 11 insertions(+), 9 deletions(-)
jump to
M bin/home-manager → bin/home-manager
@@ -112,17 +112,19 @@ ln -s $new_src $target end for np in $NIX_PATH - echo $np | read --function --delimiter "=" channel new_src_rel - set --local new_src (path resolve $new_src_rel) + if string match --quiet --entire "=" $np + echo $np | read --function --delimiter "=" channel new_src_rel + set --local new_src (path resolve $new_src_rel) - if test $channel = darwin-config - continue - end - if set --local i (contains --index $channel $old_channels) - set --erase old_channels[$i] - end + if test $channel = darwin-config + continue + end + if set --local i (contains --index $channel $old_channels) + set --erase old_channels[$i] + end - update_link $new_src $channel_root/$channel + update_link $new_src $channel_root/$channel + end end for old in $channel_root/$old_channels