From 4a9d49dbd0e02628bbeceb3885d9ee63a792ff9a Mon Sep 17 00:00:00 2001 From: Lasse Collin Date: Sat, 24 May 2025 12:01:35 +0300 Subject: [PATCH] windows/build.bash: Add quotes In this case they aren't needed but it's better style. --- windows/build.bash | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/windows/build.bash b/windows/build.bash index e27e9ec9..395d87fb 100644 --- a/windows/build.bash +++ b/windows/build.bash @@ -231,8 +231,8 @@ done VER=$(sh build-aux/version.sh) if [ -x "$SEVENZ" ]; then cd pkg - "$SEVENZ" a -tzip ../xz-$VER-windows.zip * - "$SEVENZ" a ../xz-$VER-windows.7z * + "$SEVENZ" a -tzip "../xz-$VER-windows.zip" * + "$SEVENZ" a "../xz-$VER-windows.7z" * else echo echo "NOTE: 7z was not found. xz-$VER-windows.zip" -- 2.47.2