mirror of
https://github.com/ethereum/go-ethereum.git
synced 2026-08-20 10:52:25 +00:00
15 lines
No EOL
182 B
Bash
Executable file
15 lines
No EOL
182 B
Bash
Executable file
#! /bin/bash
|
|
|
|
arrPLUGINS=(${PLUGIN_REPOSITORIES//;/ })
|
|
|
|
mkdir -p /tmp/plugins
|
|
CWD=$(pwd)
|
|
cd ./plugins
|
|
|
|
for i in "${arrPLUGINS[@]}"
|
|
do
|
|
echo "cloning $i"
|
|
git clone "$i"
|
|
done
|
|
|
|
cd $CWD |