From a00b979bb6050e36dcca06708533492b26345f9f Mon Sep 17 00:00:00 2001 From: "David Adam (zanchey)" Date: Sun, 11 Aug 2013 23:23:28 +0800 Subject: [PATCH] tarball contents should match the filename --- build_tools/make_tarball.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/build_tools/make_tarball.sh b/build_tools/make_tarball.sh index 183ea2a14..77d78c67e 100755 --- a/build_tools/make_tarball.sh +++ b/build_tools/make_tarball.sh @@ -21,9 +21,10 @@ prefix="fish" # Get the version from git-describe VERSION=`git describe --tags --dirty 2>/dev/null` +prefix="$prefix-$VERSION" # The path where we will output the tar file -path=~/fish_built/fish-$VERSION.tar +path=~/fish_built/$prefix.tar # Clean up stuff we've written before rm -f "$path" "$path".gz