From d273e554039840fdcf77008b5d9729ce51aab3d6 Mon Sep 17 00:00:00 2001 From: Matthew John Cheetham Date: Wed, 14 Jan 2026 12:27:01 +0000 Subject: [PATCH] linux/pack.sh: use standard filename format All other platforms use the package filename format: gcm(user)-$RUNTIME-$VERSION.$EXT But the Linux packages have been set to: gcm-$RUNTIME.$VERSION.$EXT Let's standardise on the `.` separator between runtime and version. Signed-off-by: Matthew John Cheetham --- src/linux/Packaging.Linux/pack.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/linux/Packaging.Linux/pack.sh b/src/linux/Packaging.Linux/pack.sh index 821d66ea1..2b3999267 100755 --- a/src/linux/Packaging.Linux/pack.sh +++ b/src/linux/Packaging.Linux/pack.sh @@ -84,12 +84,12 @@ if test -z "$RUNTIME"; then fi TAROUT="$OUTPUT_ROOT/tar" -TARBALL="$TAROUT/gcm-$RUNTIME.$VERSION.tar.gz" -SYMTARBALL="$TAROUT/gcm-$RUNTIME.$VERSION-symbols.tar.gz" +TARBALL="$TAROUT/gcm-$RUNTIME-$VERSION.tar.gz" +SYMTARBALL="$TAROUT/gcm-$RUNTIME-$VERSION-symbols.tar.gz" DEBOUT="$OUTPUT_ROOT/deb" DEBROOT="$DEBOUT/root" -DEBPKG="$DEBOUT/gcm-$RUNTIME.$VERSION.deb" +DEBPKG="$DEBOUT/gcm-$RUNTIME-$VERSION.deb" mkdir -p "$DEBROOT" # Set full read, write, execute permissions for owner and just read and execute permissions for group and other