Skip to content

Commit

Permalink
bundlerApp: do not quote so we can use wildcards
Browse files Browse the repository at this point in the history
  • Loading branch information
peterhoeg committed Jul 3, 2019
1 parent 73392e7 commit 6ad249a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkgs/development/ruby-modules/bundler-app/default.nix
Expand Up @@ -49,7 +49,7 @@ let
in
runCommand basicEnv.name cmdArgs ''
mkdir -p $out/bin
${(lib.concatMapStrings (x: "ln -s '${basicEnv}/bin/${x}' $out/bin/${x};\n") exes)}
${(lib.concatMapStrings (x: "ln -s ${basicEnv}/bin/${x} $out/bin/;\n") exes)}
${(lib.concatMapStrings (s: "makeWrapper $out/bin/$(basename ${s}) $srcdir/${s} " +
"--set BUNDLE_GEMFILE ${basicEnv.confFiles}/Gemfile "+
"--set BUNDLE_PATH ${basicEnv}/${ruby.gemPath} "+
Expand Down

0 comments on commit 6ad249a

Please sign in to comment.