mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-31 06:55:59 +00:00
script updates, swap params on createLitecoinWalletService
This commit is contained in:
parent
dc77dee849
commit
fd578dd530
5 changed files with 9 additions and 6 deletions
3
.github/workflows/pr_test_build_android.yml
vendored
3
.github/workflows/pr_test_build_android.yml
vendored
|
@ -109,9 +109,8 @@ jobs:
|
|||
# paths are reset after each step, so we need to set them again:
|
||||
export PATH=$PATH:/usr/local/go/bin
|
||||
export PATH=$PATH:~/go/bin
|
||||
# build mwebd:
|
||||
cd /opt/android/cake_wallet/scripts/android/
|
||||
./build_mwebd.sh
|
||||
./build_mwebd.sh --dont-install
|
||||
|
||||
- name: Generate KeyStore
|
||||
run: |
|
||||
|
|
2
.github/workflows/pr_test_build_linux.yml
vendored
2
.github/workflows/pr_test_build_linux.yml
vendored
|
@ -106,7 +106,7 @@ jobs:
|
|||
export PATH=$PATH:~/go/bin
|
||||
# build mwebd:
|
||||
cd /opt/android/cake_wallet/scripts/android/
|
||||
./build_mwebd.sh
|
||||
./build_mwebd.sh --dont-install
|
||||
|
||||
- name: Generate localization
|
||||
run: |
|
||||
|
|
|
@ -1000,8 +1000,8 @@ Future<void> setup({
|
|||
return bitcoin!.createLitecoinWalletService(
|
||||
_walletInfoSource,
|
||||
_unspentCoinsInfoSource,
|
||||
getIt.get<SettingsStore>().mwebAlwaysScan,
|
||||
SettingsStoreBase.walletPasswordDirectInput,
|
||||
getIt.get<SettingsStore>().mwebAlwaysScan,
|
||||
);
|
||||
case WalletType.ethereum:
|
||||
return ethereum!.createEthereumWalletService(
|
||||
|
|
|
@ -1,4 +1,6 @@
|
|||
if [[ "$1" == "--install" ]]; then
|
||||
if [[ "$1" == "--dont-install" ]]; then
|
||||
echo "Skipping Go installation as per --dont-install flag"
|
||||
else
|
||||
# install go > 1.23:
|
||||
wget https://go.dev/dl/go1.23.1.linux-amd64.tar.gz
|
||||
sudo rm -rf /usr/local/go && sudo tar -C /usr/local -xzf go1.23.1.linux-amd64.tar.gz
|
||||
|
|
|
@ -1,5 +1,7 @@
|
|||
#!/bin/bash
|
||||
if [[ "$1" == "--install" ]]; then
|
||||
if [[ "$1" == "--dont-install" ]]; then
|
||||
echo "Skipping Go installation as per --dont-install flag"
|
||||
else
|
||||
# install go > 1.23:
|
||||
brew install go
|
||||
export PATH=$PATH:~/go/bin
|
||||
|
|
Loading…
Reference in a new issue