mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 05:15:51 -06:00
24 lines
518 B
Bash
24 lines
518 B
Bash
#!/usr/bin/env bash
|
|
set -Eeuo pipefail
|
|
|
|
__script_dir=$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )
|
|
|
|
readonly __script_dir
|
|
|
|
pushd "$__script_dir/../"
|
|
|
|
pushd packages/paperless_api
|
|
$FLUTTER_ROOT/flutter packages pub get
|
|
$FLUTTER_ROOT/dart run build_runner build --delete-conflicting-outputs
|
|
popd
|
|
|
|
pushd packages/mock_server
|
|
$FLUTTER_ROOT/flutter packages pub get
|
|
popd
|
|
|
|
$FLUTTER_ROOT/flutter packages pub get
|
|
$FLUTTER_ROOT/dart run build_runner build --delete-conflicting-outputs
|
|
$FLUTTER_ROOT/flutter gen-l10n
|
|
popd
|
|
|