mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 11:04:25 +00:00
10 lines
195 B
Bash
10 lines
195 B
Bash
|
#! /bin/sh
|
||
|
|
||
|
set -eux
|
||
|
|
||
|
cd $GOPATH/src/github.com/caos/zitadel/tools
|
||
|
for imp in `cat tools.go | grep "_" | sed -E "s/_ \"(.*.+)\"/\1/g"`; do
|
||
|
echo "installing $imp"
|
||
|
go install $imp
|
||
|
done
|
||
|
cd -
|