From e98303a7b08b64891e790293d90ccbc69376cab9 Mon Sep 17 00:00:00 2001 From: Rohit Yadav Date: Wed, 6 May 2020 16:06:30 +0530 Subject: [PATCH] packaging: fix tar.gz name to cloudstack-primate-$VERSION-$DATE.tar.gz Signed-off-by: Rohit Yadav --- ui/packaging/package.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/packaging/package.sh b/ui/packaging/package.sh index fd61bb52090..2ae27297d86 100644 --- a/ui/packaging/package.sh +++ b/ui/packaging/package.sh @@ -26,7 +26,7 @@ function package_deb() { DATE=$(date +"%Y%m%d") sed -i "s/VERSION/$VERSION-$DATE/g" debian/changelog dpkg-buildpackage -uc -us - $(cd ../; tar czf primate-$VERSION-$DATE.tar.gz dist --transform s/dist/primate/) + $(cd ../; tar czf cloudstack-primate-$VERSION-$DATE.tar.gz dist --transform s/dist/primate/) } function package_rpm() {