From c1bc69d1703e6503102e7e3a3eaa94ff62c61154 Mon Sep 17 00:00:00 2001 From: Michael Krotscheck Date: Thu, 8 Oct 2015 08:26:59 -0700 Subject: [PATCH] Corrected Typo in Filename The tarballs that are uploaded to tarballs.openstack.org are suffixed with *.tar.gz, rather than *.tgz. This corrects the typo. http://tarballs.openstack.org/eslint-config-openstack/ Change-Id: I526e421dd54b184bcc1e01d8052852c6e089a3e0 --- jenkins/scripts/npm-tarball-upload.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jenkins/scripts/npm-tarball-upload.sh b/jenkins/scripts/npm-tarball-upload.sh index 27d6ff50d9..0f73b8562d 100755 --- a/jenkins/scripts/npm-tarball-upload.sh +++ b/jenkins/scripts/npm-tarball-upload.sh @@ -21,7 +21,7 @@ TARBALL_SITE=$2 TAG=$(echo $ZUUL_REF | sed 's/^refs.tags.//') # Build the filename from the discovered tag and projectname. -FILENAME="$PROJECT-$TAG.tgz" +FILENAME="$PROJECT-$TAG.tar.gz" rm -rf *tgz curl --fail -o $FILENAME http://$TARBALL_SITE/$PROJECT/$FILENAME