[Scummvm-git-logs] scummvm master -> 710217a568827cf0cc29c2dc9df388682f937593
lotharsm
noreply at scummvm.org
Mon Apr 6 09:42:39 UTC 2026
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
c9a4f12eab README: Remove obsolete CI badge
710217a568 DEVTOOLS: Fix SC1010 in dist-scummvm.sh
Commit: c9a4f12eab01ee5b361ab79ffc67f98b34f7636d
https://github.com/scummvm/scummvm/commit/c9a4f12eab01ee5b361ab79ffc67f98b34f7636d
Author: Lothar Serra Mari (mail at serra.me)
Date: 2026-04-06T11:25:48+02:00
Commit Message:
README: Remove obsolete CI badge
Changed paths:
README.md
diff --git a/README.md b/README.md
index 394fd27dcd3..f609e3860d0 100644
--- a/README.md
+++ b/README.md
@@ -1,4 +1,4 @@
-# [ScummVM README](https://www.scummvm.org/) · [](https://github.com/scummvm/scummvm/actions/workflows/ci.yml) [](https://translations.scummvm.org/engage/scummvm/?utm_source=widget) [](CONTRIBUTING.md#pull-requests) [](https://www.codacy.com/gh/scummvm/scummvm/dashboard?utm_source=github.com&utm_medium=referral&utm_content=scummvm/scummvm&utm_campaign=Badge_Grade)
+# [ScummVM README](https://www.scummvm.org/) · [](https://translations.scummvm.org/engage/scummvm/?utm_source=widget) [](CONTRIBUTING.md#pull-requests) [](https://www.codacy.com/gh/scummvm/scummvm/dashboard?utm_source=github.com&utm_medium=referral&utm_content=scummvm/scummvm&utm_campaign=Badge_Grade)
## About ScummVM
Commit: 710217a568827cf0cc29c2dc9df388682f937593
https://github.com/scummvm/scummvm/commit/710217a568827cf0cc29c2dc9df388682f937593
Author: Lothar Serra Mari (mail at serra.me)
Date: 2026-04-06T11:42:27+02:00
Commit Message:
DEVTOOLS: Fix SC1010 in dist-scummvm.sh
Changed paths:
devtools/dist-scummvm.sh
diff --git a/devtools/dist-scummvm.sh b/devtools/dist-scummvm.sh
index d61c54eeeec..765a979d6c4 100755
--- a/devtools/dist-scummvm.sh
+++ b/devtools/dist-scummvm.sh
@@ -92,7 +92,7 @@ cd $tmpdir/$fullname
echo_n "Create GIT bundle for $tag..."
git reset $tag --hard --quiet
if git bundle create $tag.bundle --all --quiet 2>/dev/null; then
- mv $tag.bundle $tmpdir/$fullname.bundle && echo done
+ mv $tag.bundle $tmpdir/$fullname.bundle && echo "done"
else
echo "creating bundle for $tag failed."
exit 1
@@ -100,7 +100,7 @@ fi
echo_n "Checking out tag $tag..."
if git checkout $tag --quiet 2>/dev/null; then
- echo done
+ echo "done"
else
echo "checking out tag $tag failed."
exit 1
More information about the Scummvm-git-logs
mailing list