summary refs log tree commit diff
path: root/pkgs/development/ruby-modules
diff options
context:
space:
mode:
authorMario Rodas <marsam@users.noreply.github.com>2023-06-02 08:26:08 -0500
committerGitHub <noreply@github.com>2023-06-02 08:26:08 -0500
commitfc6855d83a2c37dafa75298d3b968dfd0cd89597 (patch)
treecdd279604893a69e3c408d5712f8fab21b8644b8 /pkgs/development/ruby-modules
parent7f96a084183928c803ff89139a889ff0b88004dc (diff)
parente62118a3f914e1764bbdfdaed132734c0cbfee9d (diff)
downloadnixpkgs-fc6855d83a2c37dafa75298d3b968dfd0cd89597.tar
nixpkgs-fc6855d83a2c37dafa75298d3b968dfd0cd89597.tar.gz
nixpkgs-fc6855d83a2c37dafa75298d3b968dfd0cd89597.tar.bz2
nixpkgs-fc6855d83a2c37dafa75298d3b968dfd0cd89597.tar.lz
nixpkgs-fc6855d83a2c37dafa75298d3b968dfd0cd89597.tar.xz
nixpkgs-fc6855d83a2c37dafa75298d3b968dfd0cd89597.tar.zst
nixpkgs-fc6855d83a2c37dafa75298d3b968dfd0cd89597.zip
Merge pull request #235261 from nicknovitski/buc
bundlerUpdateScript: don't run bundler-audit
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 ]