Skip to content

Commit bbbf477

Browse files
committed
portable: fix artifact suffix
There was a typo in the artifact suffix which resulted in "PortableGit-2.39.0-ARM64-bit.7z.exe" instead of the expected "PortableGit-2.39.0-ARM64.7z.exe" (without -bit). This commit fixes that. Signed-off-by: Dennis Ameling <[email protected]>
1 parent 4a8491f commit bbbf477

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

portable/release.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,13 +41,13 @@ case "$MSYSTEM" in
4141
MINGW32)
4242
BITNESS=32
4343
ARCH=i686
44-
ARTIFACT_SUFFIX=32
44+
ARTIFACT_SUFFIX="32-bit"
4545
MD_ARG=128M
4646
;;
4747
MINGW64)
4848
BITNESS=64
4949
ARCH=x86_64
50-
ARTIFACT_SUFFIX=64
50+
ARTIFACT_SUFFIX="64-bit"
5151
MD_ARG=256M
5252
;;
5353
CLANGARM64)
@@ -63,7 +63,7 @@ esac
6363
MSYSTEM_LOWER=${MSYSTEM,,}
6464
VERSION=$1
6565
shift
66-
TARGET="$output_directory"/PortableGit-"$VERSION"-"$ARTIFACT_SUFFIX"-bit.7z.exe
66+
TARGET="$output_directory"/PortableGit-"$VERSION"-"$ARTIFACT_SUFFIX".7z.exe
6767
OPTS7="-m0=lzma -mx=9 -md=$MD_ARG -mfb=273 -ms=256M "
6868
TMPPACK=/tmp.7z
6969
SCRIPT_PATH="$(cd "$(dirname "$0")" && pwd)"

0 commit comments

Comments
 (0)