mirror of
https://github.com/cake-tech/cake_wallet.git
synced 2025-01-10 12:54:38 +00:00
9 lines
230 B
Bash
9 lines
230 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
if [ -z "$APP_ANDROID_TYPE" ]; then
|
||
|
echo "Please set APP_ANDROID_TYPE"
|
||
|
exit 1
|
||
|
fi
|
||
|
|
||
|
sed -i '0,/version:/{s/version:.*/version: ${APP_ANDROID_VERSION}+${APP_ANDROID_BUILD_NUMBER}/}' ./../../pubspec.yaml
|