summary refs log tree commit diff
path: root/pkgs/development/ruby-modules
diff options
context:
space:
mode:
authorNick Novitski <github@nicknovitski.com>2023-05-31 12:38:46 -0700
committerNick Novitski <github@nicknovitski.com>2023-05-31 12:38:46 -0700
commite62118a3f914e1764bbdfdaed132734c0cbfee9d (patch)
tree68e989a433053a0b143e779b2b039368705066e7 /pkgs/development/ruby-modules
parentf74369f71b981db69f50afb4f6938d1261cf3385 (diff)
downloadnixpkgs-e62118a3f914e1764bbdfdaed132734c0cbfee9d.tar
nixpkgs-e62118a3f914e1764bbdfdaed132734c0cbfee9d.tar.gz
nixpkgs-e62118a3f914e1764bbdfdaed132734c0cbfee9d.tar.bz2
nixpkgs-e62118a3f914e1764bbdfdaed132734c0cbfee9d.tar.lz
nixpkgs-e62118a3f914e1764bbdfdaed132734c0cbfee9d.tar.xz
nixpkgs-e62118a3f914e1764bbdfdaed132734c0cbfee9d.tar.zst
nixpkgs-e62118a3f914e1764bbdfdaed132734c0cbfee9d.zip
bundlerUpdateScript: don't run bundler-audit
Blocking updates on security warnings doesn't make sense; if an updated
gem has dependencies with security warnings, then it's likely for the
un-updated gem to have even more of them.
Diffstat (limited to 'pkgs/development/ruby-modules')
-rw-r--r--pkgs/development/ruby-modules/bundler-update-script/default.nix5
1 files changed, 2 insertions, 3 deletions
diff --git a/pkgs/development/ruby-modules/bundler-update-script/default.nix b/pkgs/development/ruby-modules/bundler-update-script/default.nix
index fce983a0e8e..5d5ebfabce0 100644
--- a/pkgs/development/ruby-modules/bundler-update-script/default.nix
+++ b/pkgs/development/ruby-modules/bundler-update-script/default.nix
@@ -1,11 +1,11 @@
-{ runtimeShell, lib, writeScript, bundix, bundler, bundler-audit, coreutils, git, nix }:
+{ runtimeShell, lib, writeScript, bundix, bundler, coreutils, git, nix }:
 
 attrPath:
 
 let
   updateScript = writeScript "bundler-update-script" ''
     #!${runtimeShell}
-    PATH=${lib.makeBinPath [ bundler bundler-audit bundix coreutils git nix ]}
+    PATH=${lib.makeBinPath [ bundler bundix coreutils git nix ]}
     set -o errexit
     set -o nounset
     set -o pipefail
@@ -19,7 +19,6 @@ let
     cd "$gemdir"
 
     bundler lock --update
-    bundler-audit check --update
     bundix
   '';
 in [ updateScript attrPath ]