From 870cc8d8d51c600d1b9faa0a2d6a5a9dba8b5354 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Tom=C3=A1s=20Touceda?= Date: Thu, 21 Nov 2013 12:31:23 -0300 Subject: Create bundler for OSX --- bundler/create_paths.py | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100644 bundler/create_paths.py (limited to 'bundler/create_paths.py') diff --git a/bundler/create_paths.py b/bundler/create_paths.py new file mode 100644 index 0000000..137e6e6 --- /dev/null +++ b/bundler/create_paths.py @@ -0,0 +1,18 @@ +import sys +from distutils import file_util + +def main(): + if len(sys.argv) != 2: + print "ERROR: Wrong amount of parameters." + print + print "./create_paths.py " + print + quit() + filename = sys.argv[1] + + print "Generating paths file in", filename + file_util.write_file(filename, sys.path) + print "Done" + +if __name__ == "__main__": + main() -- cgit v1.2.3