Fix crate install in workspace

This commit is contained in:
Nicolas Mattia 2019-07-05 14:50:10 +02:00
parent 6b41d97903
commit 0bf7e5d952

View file

@ -174,7 +174,7 @@ with rec
mkdir -p $out/bin
# XXX: should have --debug if mode is "debug"
# TODO: figure out how to not install everything
for p in "$cratePaths"; do
for p in $cratePaths; do
cargo install --path $p --bins --root $out ||\
echo "WARNING: Member wasn't installed: $p"
done