mirror of
https://github.com/passepartoutvpn/openssl-apple.git
synced 2025-01-22 08:42:03 +00:00
Check if Xcode path contains whitespace. Fixes #23
This commit is contained in:
parent
b689d3faf2
commit
57b4d2a5e6
@ -44,6 +44,13 @@ if [ ! -d "$DEVELOPER" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
case $DEVELOPER in
|
||||
*\ * )
|
||||
echo "Your Xcode path contains whitespaces, which is not supported."
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
case $CURRENTPATH in
|
||||
*\ * )
|
||||
echo "Your path contains whitespaces, which is not supported by 'make install'."
|
||||
|
Loading…
Reference in New Issue
Block a user