mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2024-12-23 03:59:23 +00:00
8b3b87b82a
Conflicts: cw_ethereum/lib/ethereum_transaction_history.dart cw_ethereum/lib/ethereum_wallet.dart cw_ethereum/lib/ethereum_wallet_creation_credentials.dart cw_ethereum/lib/ethereum_wallet_service.dart cw_evm/lib/file.dart cw_polygon/lib/polygon_transaction_history.dart cw_polygon/lib/polygon_wallet.dart cw_polygon/lib/polygon_wallet_creation_credentials.dart lib/ethereum/cw_ethereum.dart lib/polygon/cw_polygon.dart model_generator.sh scripts/android/app_env.sh scripts/ios/app_env.sh scripts/macos/app_env.sh tool/configure.dart
12 lines
No EOL
986 B
Bash
Executable file
12 lines
No EOL
986 B
Bash
Executable file
#!/bin/sh
|
|
|
|
cd cw_core && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd ..
|
|
cd cw_evm && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd ..
|
|
cd cw_monero && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd ..
|
|
cd cw_bitcoin && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd ..
|
|
cd cw_haven && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd ..
|
|
cd cw_nano && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd ..
|
|
cd cw_bitcoin_cash && flutter pub get && flutter packages pub run build_runner build --delete-conflicting-outputs && cd ..
|
|
cd cw_ethereum && flutter pub get && cd ..
|
|
cd cw_polygon && flutter pub get && cd ..
|
|
flutter packages pub run build_runner build --delete-conflicting-outputs |