diff options
-rwxr-xr-x | builder.py | 4 | ||||
-rwxr-xr-x | generators.py (renamed from shellgenerator.py) | 0 | ||||
-rw-r--r-- | readme.txt | 2 |
3 files changed, 3 insertions, 3 deletions
@@ -18,7 +18,7 @@ from optparse import OptionParser import sys, stat import os.path import environment, interpreter -import shellgenerator, build +import generators, build parser = OptionParser() @@ -73,7 +73,7 @@ class BuilderApp(): b = build.Build(env) intr = interpreter.Interpreter(code, b) intr.run() - g = shellgenerator.ShellGenerator(b, intr) + g = generators.ShellGenerator(b, intr) g.generate() if __name__ == '__main__': diff --git a/shellgenerator.py b/generators.py index 8c1d547..8c1d547 100755 --- a/shellgenerator.py +++ b/generators.py @@ -12,7 +12,7 @@ called 'builder.txt'. To generate the build system run this command: builder.py <source directory> <build directory> -You can omit either of the two directories, and Builder will subsitute +You can omit either of the two directories, and Builder will substitute the current directory and autodetect what you mean. This mean that you can do things like this: |