mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 11:57:41 +00:00
23d913df0c
* Update ca-certificates package in docker build image. * Add shebang to prebuild script. * Double quote WALLETTESTPARAMFILE bash variable to prevent glob expansion, word splitting, and breaking on spaces. * declare and assign array seprarately to fix Syntax error: "(" unexpected
21 lines
1.1 KiB
Bash
Executable file
21 lines
1.1 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
# Create template lib/external_api_keys.dart file if it doesn't already exist
|
|
KEYS=../lib/external_api_keys.dart
|
|
if ! test -f "$KEYS"; then
|
|
echo 'prebuild.sh: creating template lib/external_api_keys.dart file'
|
|
printf 'const kChangeNowApiKey = "";\nconst kSimpleSwapApiKey = "";\n' > $KEYS
|
|
fi
|
|
|
|
# Create template wallet test parameter files if they don't already exist
|
|
declare -a coins
|
|
coins=("bitcoin" "bitcoincash" "dogecoin" "namecoin" "firo" "particl") # TODO add monero and wownero when those tests are updated to use the .gitignored test wallet setup: when doing that, make sure to update the test vectors for a new, private development seed
|
|
|
|
for coin in "${coins[@]}"
|
|
do
|
|
WALLETTESTPARAMFILE="../test/services/coins/${coin}/${coin}_wallet_test_parameters.dart"
|
|
if ! test -f "$WALLETTESTPARAMFILE"; then
|
|
echo "prebuild.sh: creating template test/services/coins/${coin}/${coin}_wallet_test_parameters.dart file"
|
|
printf 'const TEST_MNEMONIC = "";\nconst ROOT_WIF = "";\nconst NODE_WIF_84 = "";\n' > "$WALLETTESTPARAMFILE"
|
|
fi
|
|
done
|