Skip to content

Commit c743015

Browse files
authored
linux/pack.sh: use standard filename format (#2239)
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.
2 parents 026bb0f + d273e55 commit c743015

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

src/linux/Packaging.Linux/pack.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -84,12 +84,12 @@ if test -z "$RUNTIME"; then
8484
fi
8585

8686
TAROUT="$OUTPUT_ROOT/tar"
87-
TARBALL="$TAROUT/gcm-$RUNTIME.$VERSION.tar.gz"
88-
SYMTARBALL="$TAROUT/gcm-$RUNTIME.$VERSION-symbols.tar.gz"
87+
TARBALL="$TAROUT/gcm-$RUNTIME-$VERSION.tar.gz"
88+
SYMTARBALL="$TAROUT/gcm-$RUNTIME-$VERSION-symbols.tar.gz"
8989

9090
DEBOUT="$OUTPUT_ROOT/deb"
9191
DEBROOT="$DEBOUT/root"
92-
DEBPKG="$DEBOUT/gcm-$RUNTIME.$VERSION.deb"
92+
DEBPKG="$DEBOUT/gcm-$RUNTIME-$VERSION.deb"
9393
mkdir -p "$DEBROOT"
9494

9595
# Set full read, write, execute permissions for owner and just read and execute permissions for group and other

0 commit comments

Comments
 (0)