diff options
author | William Deegan <bill@baddogconsulting.com> | 2017-02-28 17:16:16 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2017-02-28 17:16:16 (GMT) |
commit | 9eb0b9064b7eb0ec089be5fc643f26552c035315 (patch) | |
tree | 68a76cc925433aaefe18fff7196fe653001a61b9 /test/Builder | |
parent | 5a7473d2fd2add15c8489cb57c4820ea0d36c3d0 (diff) | |
download | SCons-9eb0b9064b7eb0ec089be5fc643f26552c035315.zip SCons-9eb0b9064b7eb0ec089be5fc643f26552c035315.tar.gz SCons-9eb0b9064b7eb0ec089be5fc643f26552c035315.tar.bz2 |
no need to write SConstruct as binary file change to normal file
Diffstat (limited to 'test/Builder')
-rw-r--r-- | test/Builder/different-actions.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/Builder/different-actions.py b/test/Builder/different-actions.py index d84a9f9..f98db93 100644 --- a/test/Builder/different-actions.py +++ b/test/Builder/different-actions.py @@ -39,7 +39,7 @@ e2 = Environment() e1.Command('out.txt', [], 'echo 1 > $TARGET') e2.Command('out.txt', [], 'echo 2 > $TARGET') -""") +""",'w') expect = TestSCons.re_escape(""" scons: *** Two environments with different actions were specified for the same target: out.txt |