go-ethereum/plugins/build.sh
Isma d64d8c5f14
fix: logrus already persent
Signed-off-by: Isma <71719097+Doozers@users.noreply.github.com>
2023-12-22 15:27:53 +01:00

9 lines
128 B
Bash
Executable file

#! /bin/bash
for d in plugins/*/ ; do
CWD=$(pwd)
echo "fetch dependencies $d"
cd "$d"
./dependencies.sh
cd "$CWD"
done