mirror of
https://github.com/passepartoutvpn/openssl-apple.git
synced 2025-01-20 07:49:11 +00:00
Error if path contains whitespaces. Fixes #20
This commit is contained in:
parent
40b56bb2c9
commit
401212334c
@ -44,6 +44,13 @@ if [ ! -d "$DEVELOPER" ]; then
|
||||
exit 1
|
||||
fi
|
||||
|
||||
case $CURRENTPATH in
|
||||
*\ * )
|
||||
echo "Your path contains whitespaces, which is not supported by 'make install'."
|
||||
exit 1
|
||||
;;
|
||||
esac
|
||||
|
||||
set -e
|
||||
if [ ! -e openssl-${VERSION}.tar.gz ]; then
|
||||
echo "Downloading openssl-${VERSION}.tar.gz"
|
||||
|
Loading…
Reference in New Issue
Block a user