fixes issues in case wget is not found in path
git-svn-id: http://google-refine.googlecode.com/svn/trunk@397 7d457c2a-affb-35e4-300a-418c747d4874
This commit is contained in:
parent
5afd2e8c00
commit
1ad122ee47
@ -114,15 +114,15 @@ download() {
|
|||||||
CURL="`which curl`"
|
CURL="`which curl`"
|
||||||
WGET="`which wget`"
|
WGET="`which wget`"
|
||||||
|
|
||||||
if [ $CURL == "" ] && [ $WGET == "" ]; then
|
if [ "$CURL" == "" ] && [ "$WGET" == "" ]; then
|
||||||
error "We need either 'curl' or 'wget' present in PATH to download external dependencies."
|
error "We need either 'curl' or 'wget' present in PATH to download external dependencies."
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $CURL != "" ] ; then
|
if [ "$CURL" != "" ] ; then
|
||||||
curl -o $DEST $URL || exit 1
|
curl -o $DEST $URL || exit 1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if [ $WGET != "" ] ; then
|
if [ "$WGET" != "" ] ; then
|
||||||
wget -O $DEST $URL || exit 1
|
wget -O $DEST $URL || exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user