We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1125623 commit dfa1e3dCopy full SHA for dfa1e3d
scripts/sync_db.py
@@ -87,6 +87,8 @@ def run():
87
updated = 0
88
d = 0
89
for database_folder in dirs:
90
+ # Since we'd normally operate on the file system outside the container (e.g. git pulling database repos),
91
+ # this allows running git commands from inside the container (with a different user)
92
subprocess.run(
93
[
94
"git",
@@ -131,7 +133,7 @@ def run():
131
133
if "playable" in file:
132
134
romfile = file["filename"]
135
- # Just on the GB database, run the gbstoolsid to get
136
+ # For the GB database only, run the gbstoolsid to get
137
# some information about how the ROM was developed
138
if "database-gb" in folder:
139
try:
0 commit comments