diff options
author | William Deegan <bill@baddogconsulting.com> | 2020-03-22 01:11:03 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2020-04-09 20:51:24 (GMT) |
commit | 349d79172a60b2840a17c03456be93560ec974e0 (patch) | |
tree | 2f29706388cc6ad7df2a83402b27e8c23e67eee0 | |
parent | 111837ba11bdf49703e9d6bdc5e79f0231a88095 (diff) | |
download | SCons-349d79172a60b2840a17c03456be93560ec974e0.zip SCons-349d79172a60b2840a17c03456be93560ec974e0.tar.gz SCons-349d79172a60b2840a17c03456be93560ec974e0.tar.bz2 |
Fix scripts dirname typo
-rwxr-xr-x | runtest.py | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -555,7 +555,7 @@ else: scons_runtest_dir = base if not external: - scons_script_dir = sd or os.path.join(base, 'script') + scons_script_dir = sd or os.path.join(base, 'scripts') scons_lib_dir = ld or os.path.join(base, 'src', 'engine') else: scons_script_dir = sd or '' |