mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-26 11:22:40 +00:00
bce2694694
- [x] Fetch app version/build without agvtool, unavailable on ubuntu-latest - [x] Move TestFlight preface to a repository variable - [x] Move TestFlight URL to README instead
8 lines
218 B
Bash
Executable File
8 lines
218 B
Bash
Executable File
#!/bin/sh
|
|
if [ -z "$1" ]; then
|
|
echo "Path to Xcode project required"
|
|
exit 1
|
|
fi
|
|
XCODEPROJ="$1"
|
|
grep CURRENT_PROJECT_VERSION $XCODEPROJ | uniq | sed -E "s/^.*CURRENT_PROJECT_VERSION = ([0-9]+);/\1/" | tr -d '\n'
|