From 75d50f589e1087a06c14ed6160b91772400bb80a Mon Sep 17 00:00:00 2001 From: Mitchell Hashimoto Date: Wed, 16 Apr 2014 22:00:35 -0700 Subject: [PATCH] scripts: dist should have version in filename --- scripts/dist.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/dist.sh b/scripts/dist.sh index c409820f0b..dc75a9aabe 100755 --- a/scripts/dist.sh +++ b/scripts/dist.sh @@ -28,7 +28,7 @@ mkdir -p ./dist/pkg for FILENAME in $(find ./dist -mindepth 1 -maxdepth 1 -type f); do FILENAME=$(basename $FILENAME) PLATFORM="${FILENAME%.*}" - zip ./dist/pkg/${PLATFORM}.zip ./dist/${FILENAME} + zip ./dist/pkg/${VERSION}_${PLATFORM}.zip ./dist/${FILENAME} done # Make the checksums