[Scummvm-git-logs] scummvm master -> 515b5b59dc8fe7b8a003b2ca1a4da7d84ff9c4eb
lotharsm
noreply at scummvm.org
Mon Apr 6 08:50:32 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
515b5b59dc DEVTOOLS: Supress warning for SC2059 in dist-scummvm.sh
Commit: 515b5b59dc8fe7b8a003b2ca1a4da7d84ff9c4eb
https://github.com/scummvm/scummvm/commit/515b5b59dc8fe7b8a003b2ca1a4da7d84ff9c4eb
Author: Lothar Serra Mari (mail at serra.me)
Date: 2026-04-06T10:48:10+02:00
Commit Message:
DEVTOOLS: Supress warning for SC2059 in dist-scummvm.sh
With SC2059, shellcheck warns about using variables in printf
format strings. However, since we use this for injecting formatting
directives, we must supress this warning.
Changed paths:
devtools/dist-scummvm.sh
diff --git a/devtools/dist-scummvm.sh b/devtools/dist-scummvm.sh
index b5f7625d91c..d61c54eeeec 100755
--- a/devtools/dist-scummvm.sh
+++ b/devtools/dist-scummvm.sh
@@ -37,6 +37,7 @@ if [ $# -lt 2 ]; then
fi
echo_n() {
+ # shellcheck disable=SC2059
printf "$@"
}
More information about the Scummvm-git-logs
mailing list