mirror of
https://github.com/scratchfoundation/scratch-blocks.git
synced 2025-07-29 15:19:33 -04:00
Fix #946. Don't check for presence of constants.js
This commit is contained in:
parent
3d08099950
commit
c5c32b457f
1 changed files with 1 additions and 1 deletions
2
build.py
2
build.py
|
@ -417,7 +417,7 @@ class Gen_langfiles(threading.Thread):
|
|||
"--quiet"]
|
||||
json_files = glob.glob(os.path.join("msg", "json", "*.json"))
|
||||
json_files = [file for file in json_files if not
|
||||
(file.endswith(("keys.json", "synonyms.json", "qqq.json")))]
|
||||
(file.endswith(("keys.json", "synonyms.json", "qqq.json", "constants.json")))]
|
||||
cmd.extend(json_files)
|
||||
subprocess.check_call(cmd)
|
||||
except (subprocess.CalledProcessError, OSError) as e:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue