mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-22 08:32:11 +00:00
13 lines
262 B
Bash
13 lines
262 B
Bash
|
#!/bin/bash
|
||
|
if [[ -z "$1" ]]; then
|
||
|
echo "Path to Xcode project required"
|
||
|
exit 1
|
||
|
fi
|
||
|
if [[ -z "$2" ]]; then
|
||
|
echo "Setting key required"
|
||
|
exit 1
|
||
|
fi
|
||
|
xcconfig="$1"
|
||
|
setting_key="$2"
|
||
|
grep $setting_key $xcconfig | sed -E "s/^.*${setting_key} = (.*)$/\1/"
|