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