From 9002eebfcc7e871b7cd40ce4e796ff20c286d902 Mon Sep 17 00:00:00 2001 From: Stefan van der Walt Date: Wed, 2 Jul 2014 01:40:31 +0200 Subject: [PATCH] Get tags from current repo --- tools/osx_wheel_upload.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/osx_wheel_upload.sh b/tools/osx_wheel_upload.sh index c557b56e..7d757379 100755 --- a/tools/osx_wheel_upload.sh +++ b/tools/osx_wheel_upload.sh @@ -5,7 +5,6 @@ if [ "`which twine`" == "" ]; then echo "twine not on path; need to pip install twine?" exit 1 fi -cd scikit-image SK_VERSION=`git describe --tags` if [ "${SK_VERSION:0:1}" != 'v' ]; then echo "scikit image version $SK_VERSION does not start with 'v'" @@ -20,6 +19,7 @@ for py_tag in cp27-none cp33-cp33m cp34-cp34m do wheel_name="$WHEEL_HEAD-$py_tag-$WHEEL_TAIL" wheel_url="${RACKSPACE_URL}/${wheel_name}" + echo "Fetching $wheel_url" curl -O $wheel_url if [ "$?" != "0" ]; then echo "Failed downloading $wheel_url; check travis build?"