mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-16 17:27:39 +00:00
9 lines
228 B
Bash
9 lines
228 B
Bash
|
#!/usr/bin/env bash
|
||
|
|
||
|
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
|
||
|
|
||
|
PROJECT_ROOT_DIR="$SCRIPT_DIR/../.."
|
||
|
|
||
|
cd "$PROJECT_ROOT_DIR" || exit
|
||
|
dart run build_runner build --delete-conflicting-outputs
|