diff options
author | dhuth <derickhuth@gmail.com> | 2014-11-07 14:32:10 -0700 |
---|---|---|
committer | dhuth <derickhuth@gmail.com> | 2014-11-07 14:32:10 -0700 |
commit | 5db772d7ba5c5a6cab3b9f9da0bd4eb42cc331b7 (patch) | |
tree | dd31e6b2b28f921922cf937691f7e6db38c8d84d /test-chill/testchill/__main__.py | |
parent | 4d2a15ca46c935cfcde952092cc3e4642f86b2a7 (diff) | |
download | chill-5db772d7ba5c5a6cab3b9f9da0bd4eb42cc331b7.tar.gz chill-5db772d7ba5c5a6cab3b9f9da0bd4eb42cc331b7.tar.bz2 chill-5db772d7ba5c5a6cab3b9f9da0bd4eb42cc331b7.zip |
Coverage
Diffstat (limited to 'test-chill/testchill/__main__.py')
-rw-r--r-- | test-chill/testchill/__main__.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test-chill/testchill/__main__.py b/test-chill/testchill/__main__.py index bd68e16..3e03e11 100644 --- a/test-chill/testchill/__main__.py +++ b/test-chill/testchill/__main__.py @@ -317,7 +317,7 @@ def add_global_args(arg_parser): arg_parser.add_argument('-w', '--working-dir', dest='wd', default=os.getcwd(), help='The working directory. (Defaults to the current directory)', metavar='working-directory') arg_parser.add_argument('-R', '--rose-home', dest='rose_dir', default=os.getenv('ROSEHOME'), help='Rose home directory. (Defaults to ROSEHOME)', metavar='rose-home') arg_parser.add_argument('-C', '--chill-home', dest='chill_dir', default=os.getenv('CHILLHOME'), help='Chill home directory. (Defaults to CHILLHOME)', metavar='chill-home') - arg_parser.add_argument('-O', '--omega-home', dest='omega_dir', default=os.getenv('OMEGAHOME'), help='Omega home directory. (Defaults to OMEGAHOME)', metavar='omega-home') + arg_parser.add_argument('-O', '--omega-home', dest='omega_dir', default=os.joinpath(os.getcwd(), '../omega'), help='Omega home directory. (Defaults to ../omega)', metavar='omega-home') arg_parser.add_argument('-b', '--binary-dir', dest='bin_dir', default=None, help='Binary directory.', metavar='bin-dir') @util.callonce |