Skip to content

Commit 355b7b3

Browse files
committed
Fix Travis
The $VIPS_VERSION environment variable is not defined anymore.
1 parent 81d6b54 commit 355b7b3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

install-vips.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
vips_site=http://www.vips.ecs.soton.ac.uk/supported
44
version=$VIPS_VERSION_MAJOR.$VIPS_VERSION_MINOR
5-
version_full=$VIPS_VERSION.$VIPS_VERSION_MICRO
5+
version_full=$version.$VIPS_VERSION_MICRO
66

77
set -e
88

@@ -11,7 +11,7 @@ set -e
1111
if [ -d "$HOME/vips/bin" ]; then
1212
installed_version=$($HOME/vips/bin/vips --version)
1313
escaped_version="$VIPS_VERSION_MAJOR\.$VIPS_VERSION_MINOR\.$VIPS_VERSION_MICRO"
14-
echo "Need vips-$version_fulL"
14+
echo "Need vips-$version_full"
1515
echo "Found $installed_version"
1616
if [[ "$installed_version" =~ ^vips-$escaped_version ]]; then
1717
echo "Using cached directory"

0 commit comments

Comments
 (0)