[Scummvm-git-logs] scummvm master -> 6b4e3dcb41495a5a2b5101b493d9ae481949ef8a

sev- noreply at scummvm.org
Wed May 22 20:46:15 UTC 2024


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
6b4e3dcb41 DEVTOOLS: Sort engines alphabetically in prerelease checks


Commit: 6b4e3dcb41495a5a2b5101b493d9ae481949ef8a
    https://github.com/scummvm/scummvm/commit/6b4e3dcb41495a5a2b5101b493d9ae481949ef8a
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2024-05-22T22:46:03+02:00

Commit Message:
DEVTOOLS: Sort engines alphabetically in prerelease checks

Changed paths:
    devtools/release-checks.sh


diff --git a/devtools/release-checks.sh b/devtools/release-checks.sh
index e20f0a6c3f3..f728a9a00c3 100755
--- a/devtools/release-checks.sh
+++ b/devtools/release-checks.sh
@@ -499,17 +499,17 @@ IFS="$OLDIFS"
 #############################################################################
 
 ###########
-# MM engine
+# Bagel engine
 ###########
 
-echo_n "Checking mm.dat..."
+echo_n "Checking bagel.dat..."
 
-fileDate=`git log -1 dists/engine-data/mm.dat | grep Date | sed 's/Date: //'`
+fileDate=`git log -1 dists/engine-data/bagel.dat | grep Date | sed 's/Date: //'`
 
-num_lines=`git -P log --oneline "--since=$fileDate" devtools/create_mm/files | wc -l`
+num_lines=`git -P log --oneline "--since=$fileDate" devtools/create_bagel/files | wc -l`
 
 if [ "$num_lines" -ne "0" ]; then
-  echo -e "$num_lines unprocessed commits. ${RED}Run 'cd devtools/create_mm/files; zip -r9 ../../../dists/engine-data/mm.dat .'${NC}"
+  echo -e "$num_lines unprocessed commits. ${RED}Run 'cd devtools/create_bagel/files; zip -r9 ../../../dists/engine-data/bagel.dat .'${NC}"
 
   failPlus
 else
@@ -518,17 +518,17 @@ fi
 
 
 ###########
-# Bagel engine
+# MM engine
 ###########
 
-echo_n "Checking bagel.dat..."
+echo_n "Checking mm.dat..."
 
-fileDate=`git log -1 dists/engine-data/bagel.dat | grep Date | sed 's/Date: //'`
+fileDate=`git log -1 dists/engine-data/mm.dat | grep Date | sed 's/Date: //'`
 
-num_lines=`git -P log --oneline "--since=$fileDate" devtools/create_bagel/files | wc -l`
+num_lines=`git -P log --oneline "--since=$fileDate" devtools/create_mm/files | wc -l`
 
 if [ "$num_lines" -ne "0" ]; then
-  echo -e "$num_lines unprocessed commits. ${RED}Run 'cd devtools/create_bagel/files; zip -r9 ../../../dists/engine-data/bagel.dat .'${NC}"
+  echo -e "$num_lines unprocessed commits. ${RED}Run 'cd devtools/create_mm/files; zip -r9 ../../../dists/engine-data/mm.dat .'${NC}"
 
   failPlus
 else




More information about the Scummvm-git-logs mailing list