mirror of
https://github.com/cypherstack/stack_wallet.git
synced 2025-03-15 16:12:16 +00:00
Add prebuild script
Creates template lib/external_api_keys.dart file if it doesn't already exist
This commit is contained in:
parent
c83e1b5cb2
commit
65655f4f6d
1 changed files with 6 additions and 0 deletions
6
scripts/prebuild.sh
Normal file
6
scripts/prebuild.sh
Normal file
|
@ -0,0 +1,6 @@
|
|||
# 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
|
Loading…
Reference in a new issue