summary refs log tree commit diff
path: root/pkgs/shells
diff options
context:
space:
mode:
authorCole Helbling <cole.e.helbling@outlook.com>2020-02-16 23:26:28 -0800
committerCole Helbling <cole.e.helbling@outlook.com>2020-02-16 23:29:02 -0800
commit2721f9d549d1f18973ab23eb1ccaa1369d398bc2 (patch)
treedf98d7d303b5a4a795099dfea106b928eeaf166c /pkgs/shells
parent79969356682e7ea642a0ee934080cc769a689790 (diff)
downloadnixpkgs-2721f9d549d1f18973ab23eb1ccaa1369d398bc2.tar
nixpkgs-2721f9d549d1f18973ab23eb1ccaa1369d398bc2.tar.gz
nixpkgs-2721f9d549d1f18973ab23eb1ccaa1369d398bc2.tar.bz2
nixpkgs-2721f9d549d1f18973ab23eb1ccaa1369d398bc2.tar.lz
nixpkgs-2721f9d549d1f18973ab23eb1ccaa1369d398bc2.tar.xz
nixpkgs-2721f9d549d1f18973ab23eb1ccaa1369d398bc2.tar.zst
nixpkgs-2721f9d549d1f18973ab23eb1ccaa1369d398bc2.zip
fish-foreign-env: update stderr redirection in patch
Caret stderr redirection has been deprecated and will be removed in a
future version.
Diffstat (limited to 'pkgs/shells')
-rw-r--r--pkgs/shells/fish/fish-foreign-env/suppress-harmless-warnings.patch2
1 files changed, 1 insertions, 1 deletions
diff --git a/pkgs/shells/fish/fish-foreign-env/suppress-harmless-warnings.patch b/pkgs/shells/fish/fish-foreign-env/suppress-harmless-warnings.patch
index 5e4569f0a15..6eed3515212 100644
--- a/pkgs/shells/fish/fish-foreign-env/suppress-harmless-warnings.patch
+++ b/pkgs/shells/fish/fish-foreign-env/suppress-harmless-warnings.patch
@@ -14,7 +14,7 @@ index 34a25e3..3d94135 100644
  
 -        set -g -x $key $value
 +        if contains $key $ignore
-+          set -g -x $key $value ^/dev/null
++          set -g -x $key $value 2>/dev/null
 +        else
 +          set -g -x $key $value
 +        end