mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2024-11-05 20:07:44 +00:00
6 lines
298 B
Bash
Executable file
6 lines
298 B
Bash
Executable file
# 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 = "";' > $KEYS
|
|
fi
|