mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-12-25 04:49:36 +00:00
7 lines
265 B
Bash
7 lines
265 B
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'
|
||
|
echo 'const kChangeNowApiKey = "";' > $KEYS
|
||
|
fi
|