mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-12 02:54:20 +00:00
fa9f581d56
* chore: move to new org * logging * fix: org rename caos -> zitadel Co-authored-by: adlerhurst <silvan.reusser@gmail.com>
10 lines
198 B
Bash
Executable File
10 lines
198 B
Bash
Executable File
#! /bin/sh
|
|
|
|
set -eux
|
|
|
|
cd $GOPATH/src/github.com/zitadel/zitadel/tools
|
|
for imp in `cat tools.go | grep "_" | sed -E "s/_ \"(.*.+)\"/\1/g"`; do
|
|
echo "installing $imp"
|
|
go install $imp
|
|
done
|
|
cd - |