aboutsummaryrefslogtreecommitdiffstats
path: root/LUFA/StudioIntegration
diff options
context:
space:
mode:
Diffstat (limited to 'LUFA/StudioIntegration')
-rw-r--r--LUFA/StudioIntegration/generate_caches.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/LUFA/StudioIntegration/generate_caches.py b/LUFA/StudioIntegration/generate_caches.py
index c76c0d8bb..9c70ebdf1 100644
--- a/LUFA/StudioIntegration/generate_caches.py
+++ b/LUFA/StudioIntegration/generate_caches.py
@@ -16,7 +16,7 @@ def main():
from asf_avrstudio5_interface import PythonFacade
except ImportError:
print "Fatal Error: The ASF project generator is missing."
- sys.exit()
+ return 1
p = PythonFacade(os.path.abspath(__file__))
@@ -29,6 +29,7 @@ def main():
p.generate_extension_cache_files(sys.argv[1])
print "[Project Generator] Cache files created."
+ return 0
if __name__ == "__main__":