Skip to content

Commit 0e933c4

Browse files
committed
reloc: rename python-package to align with arch convention
The names of the packages generated during the build, contain the `arch` in a weird and non-common location, The common convention is to always put the `arch` as a suffix before the dot of the file-extension, This commit aligns the python-package name with the common convention, Issue #9799
1 parent f725ec7 commit 0e933c4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Diff for: reloc/build_reloc.sh

+2-2
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
# SPDX-License-Identifier: Apache-2.0
77

88
print_usage() {
9-
echo "build_reloc.sh --dest build/scylla-python3-package.tar.gz"
9+
echo "build_reloc.sh --dest build/scylla-python3.tar.gz"
1010
echo " --packages specify python3 packages to be add on relocatable package"
1111
echo " --pip-packages specify pip packages to be add on relocatable package"
1212
echo " --dest specify destination path"
@@ -57,7 +57,7 @@ VERSION=$(./SCYLLA-VERSION-GEN ${VERSION_OVERRIDE:+ --version "$VERSION_OVERRIDE
5757
# the former command should generate build/SCYLLA-PRODUCT-FILE and some other version
5858
# related files
5959
PRODUCT=`cat build/SCYLLA-PRODUCT-FILE`
60-
DEST=build/$PRODUCT-python3-$(arch)-package.tar.gz
60+
DEST=build/$PRODUCT-python3-$(arch).tar.gz
6161

6262
if [ "$CLEAN" = "yes" ]; then
6363
rm -rf build

0 commit comments

Comments
 (0)