Fix quoting in Elixir generic builder

This commit is contained in:
Justin Wood 2017-07-08 20:32:16 -04:00
parent a19f9668f2
commit 6db77ccef4
No known key found for this signature in database
GPG Key ID: AD57C47E5F931181

@ -48,7 +48,7 @@ in
for f in $out/bin/*; do
b=$(basename $f)
if [ $b == "mix" ]; then continue; fi
if [ "$b" = mix ]; then continue; fi
wrapProgram $f \
--prefix PATH ":" "${stdenv.lib.makeBinPath [ erlang coreutils curl bash ]}" \
--set CURL_CA_BUNDLE /etc/ssl/certs/ca-certificates.crt