mirror of
https://github.com/darkrenaissance/darkfi.git
synced 2026-04-28 03:00:18 -04:00
11 lines
181 B
Bash
Executable File
11 lines
181 B
Bash
Executable File
#!/bin/sh
|
|
set -e
|
|
|
|
find_packages() {
|
|
find bin -type f -name Cargo.toml | while read line; do
|
|
echo "$(basename "$(dirname "$line")")"
|
|
done
|
|
}
|
|
|
|
make BINS="$(find_packages | xargs)"
|