mirror of
https://github.com/status-im/status-go.git
synced 2025-01-09 14:16:21 +00:00
10 lines
175 B
Bash
10 lines
175 B
Bash
|
#!/bin/sh
|
||
|
|
||
|
git clone https://github.com/$GITHUB_ORG/$GITHUB_REPO
|
||
|
cd $GITHUB_REPO
|
||
|
git submodule deinit --force .
|
||
|
git submodule update --init --recursive
|
||
|
|
||
|
forge build
|
||
|
exec "$@"
|