mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
9 lines
128 B
Bash
Executable file
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
|