From 9a630b738669698f7f87dd0970b857addde1298c Mon Sep 17 00:00:00 2001 From: Benedikt Peetz Date: Mon, 14 Apr 2025 15:55:01 +0200 Subject: pkgs/{lm,ll}: Don't leak bash options in shell context --- pkgs/by-name/ll/ll/package.nix | 2 ++ pkgs/by-name/lm/lm/package.nix | 1 + 2 files changed, 3 insertions(+) diff --git a/pkgs/by-name/ll/ll/package.nix b/pkgs/by-name/ll/ll/package.nix index 1516c51c..caca5b4e 100644 --- a/pkgs/by-name/ll/ll/package.nix +++ b/pkgs/by-name/ll/ll/package.nix @@ -3,5 +3,7 @@ writeShellApplication { name = "ll"; text = builtins.readFile ./ll.sh; + # This is sourced in the shell inheritPath = true; + bashOptions = []; } diff --git a/pkgs/by-name/lm/lm/package.nix b/pkgs/by-name/lm/lm/package.nix index e3ebe962..a80c473e 100644 --- a/pkgs/by-name/lm/lm/package.nix +++ b/pkgs/by-name/lm/lm/package.nix @@ -5,4 +5,5 @@ writeShellApplication { # This is sourced in the shell inheritPath = true; + bashOptions = []; } -- cgit 1.4.1