mirror of
https://github.com/Xevion/paperless-mobile.git
synced 2025-12-06 15:15:50 -06:00
This commit modifies the dependencies installer script to make it more robust, meaning that it works even when invoked from other directories than `scripts/`.
24 lines
434 B
Bash
Executable File
24 lines
434 B
Bash
Executable File
#!/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 packages pub get
|
|
dart run build_runner build --delete-conflicting-outputs
|
|
popd
|
|
|
|
pushd packages/mock_server
|
|
flutter packages pub get
|
|
popd
|
|
|
|
flutter packages pub get
|
|
flutter gen-l10n
|
|
dart run build_runner build --delete-conflicting-outputs
|
|
|
|
popd
|
|
|