From 628037f2e565c9af25ff9dea6ac58b4c9cc21358 Mon Sep 17 00:00:00 2001 From: drojf Date: Sun, 21 Aug 2022 14:20:52 +1000 Subject: [PATCH] Add rei 2019.4.4 to build scripts --- build.py | 6 ++++-- compileall.sh | 4 +++- 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/build.py b/build.py index 492a480..7549c22 100644 --- a/build.py +++ b/build.py @@ -71,7 +71,9 @@ chapter_to_build_variants = { ], 'rei': [ 'rei 2019.4.3 win', + 'rei 2019.4.4 win', 'rei 2019.4.3 unix', + 'rei 2019.4.4 unix', ], } @@ -161,10 +163,10 @@ class LastModifiedManager: localLastModified = self.lastModifiedDict.get(url) if localLastModified is not None and localLastModified == remoteLastModified: - print(f"LastModifiedManager: local and remote dates the same {localLastModified}") + print(f"LastModifiedManager [{url}]: local and remote dates the same {localLastModified}") return False - print(f"LastModifiedManager: local {localLastModified} and remote {remoteLastModified} are different") + print(f"LastModifiedManager [{url}]: local {localLastModified} and remote {remoteLastModified} are different") self.lastModifiedDict[url] = remoteLastModified return True diff --git a/compileall.sh b/compileall.sh index 3ffaa58..765a530 100644 --- a/compileall.sh +++ b/compileall.sh @@ -23,4 +23,6 @@ cargo run matsuribayashi 5.6.7f1 unix && \ cargo run matsuribayashi 2017.2.5 unix && \ cargo run matsuribayashi 2017.2.5 win && \ cargo run rei 2019.4.3 win && \ -cargo run rei 2019.4.3 unix +cargo run rei 2019.4.4 win && \ +cargo run rei 2019.4.3 unix && \ +cargo run rei 2019.4.4 unix