mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2024-12-27 03:42:39 +00:00
8 lines
218 B
Bash
8 lines
218 B
Bash
|
#!/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'
|