diff options
author | Dean Camera <dean@fourwalledcubicle.com> | 2013-01-09 20:42:14 +0000 |
---|---|---|
committer | Dean Camera <dean@fourwalledcubicle.com> | 2013-01-09 20:42:14 +0000 |
commit | bbffe94a9d425128aa4f403d285a1a848e00b4a5 (patch) | |
tree | ac90b8c47b4113b0c5618b7905420e1b114e757a /LUFA/StudioIntegration/generate_caches.py | |
parent | eac6205747a0ebd60decc0790d28bf86a1938107 (diff) | |
download | lufa-bbffe94a9d425128aa4f403d285a1a848e00b4a5.tar.gz lufa-bbffe94a9d425128aa4f403d285a1a848e00b4a5.tar.bz2 lufa-bbffe94a9d425128aa4f403d285a1a848e00b4a5.zip |
Ensure the VSIX Python script aborts if the ASF project generator is missing.
Diffstat (limited to 'LUFA/StudioIntegration/generate_caches.py')
-rw-r--r-- | LUFA/StudioIntegration/generate_caches.py | 31 |
1 files changed, 23 insertions, 8 deletions
diff --git a/LUFA/StudioIntegration/generate_caches.py b/LUFA/StudioIntegration/generate_caches.py index 033ae28dd..1e49320ae 100644 --- a/LUFA/StudioIntegration/generate_caches.py +++ b/LUFA/StudioIntegration/generate_caches.py @@ -10,11 +10,26 @@ import sys import os
sys.path.append("ProjectGenerator")
-try:
- from asf_avrstudio5_interface import PythonFacade
-except ImportError:
- print "The ASF project generator is missing."
-
-p = PythonFacade(os.path.abspath(__file__))
-p.check_extension_database_sanity(sys.argv[1])
-p.generate_extension_cache_files(sys.argv[1])
+
+def main():
+ try:
+ from asf_avrstudio5_interface import PythonFacade
+ except ImportError:
+ print "The ASF project generator is missing."
+ sys.exit()
+
+ p = PythonFacade(os.path.abspath(__file__))
+
+ print "[Project Generator] Checking database sanity..."
+ sys.stdout.flush()
+ p.check_extension_database_sanity(sys.argv[1])
+
+ print "[Project Generator] Building cache files..."
+ sys.stdout.flush()
+ p.generate_extension_cache_files(sys.argv[1])
+
+ print "[Project Generator] Cache files created."
+
+
+if __name__ == "__main__":
+ sys.exit(main())
\ No newline at end of file |