mirror of
https://github.com/status-im/status-go.git
synced 2025-01-12 15:45:07 +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 "$@"
|