mirror of
https://github.com/nix-community/naersk
synced 2024-11-23 04:03:04 +00:00
Fix crate install in workspace
This commit is contained in:
parent
6b41d97903
commit
0bf7e5d952
1 changed files with 1 additions and 1 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue