You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
307 B
15 lines
307 B
2 years ago
|
#!/bin/bash
|
||
|
set -euxo pipefail
|
||
|
cd "$(dirname "$0")/.."
|
||
|
|
||
|
git submodule init
|
||
|
git submodule update
|
||
|
fvm dart pub global activate mono_repo 6.3.0
|
||
|
fvm dart pub global activate fvm 2.3.1
|
||
|
fvm install
|
||
|
(
|
||
|
cd external/openapi-generator
|
||
|
./mvnw package -DskipTests -Dmaven.test.skip=true
|
||
|
)
|
||
|
fvm exec mono_repo pub get
|