diff options
author | Alon Zakai <alonzakai@gmail.com> | 2013-12-12 09:36:37 -0800 |
---|---|---|
committer | Alon Zakai <alonzakai@gmail.com> | 2013-12-12 09:36:37 -0800 |
commit | afd5b08108f13349379f2dd58f2304edd6bbf0a8 (patch) | |
tree | 05bea54c75b57ba8d5b88b2421847b3e7781afc7 /tools | |
parent | 458f4a63293697adb6fa0639f3793a2c74ba2297 (diff) |
skip sanity checks if EM_CONFIG is used instead of normal ~/.emscripten
Diffstat (limited to 'tools')
-rw-r--r-- | tools/shared.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/shared.py b/tools/shared.py index 84f80072..3456ab18 100644 --- a/tools/shared.py +++ b/tools/shared.py @@ -316,7 +316,7 @@ def check_sanity(force=False): try: reason = None if not CONFIG_FILE: - if not force: return # config stored directly in EM_CONFIG => skip sanity checks + return # config stored directly in EM_CONFIG => skip sanity checks else: settings_mtime = os.stat(CONFIG_FILE).st_mtime sanity_file = CONFIG_FILE + '_sanity' |