diff options
author | William Deegan <bill@baddogconsulting.com> | 2016-09-22 22:15:47 (GMT) |
---|---|---|
committer | William Deegan <bill@baddogconsulting.com> | 2016-09-22 22:15:47 (GMT) |
commit | 4fe5ff748a5831be8279c3c9bc1c198fcacc9aca (patch) | |
tree | adf77c2972b107d5743d253b0d26363e089a6152 /test/Actions | |
parent | efb7469bf68d57b590fa477f0ea2224d339f679f (diff) | |
download | SCons-4fe5ff748a5831be8279c3c9bc1c198fcacc9aca.zip SCons-4fe5ff748a5831be8279c3c9bc1c198fcacc9aca.tar.gz SCons-4fe5ff748a5831be8279c3c9bc1c198fcacc9aca.tar.bz2 |
fix missing file from test fixture
Diffstat (limited to 'test/Actions')
-rw-r--r-- | test/Actions/pre-post-fixture/work4/build.py | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/test/Actions/pre-post-fixture/work4/build.py b/test/Actions/pre-post-fixture/work4/build.py new file mode 100644 index 0000000..db0572a --- /dev/null +++ b/test/Actions/pre-post-fixture/work4/build.py @@ -0,0 +1,5 @@ +import sys +outfp = open(sys.argv[1], 'wb') +for f in sys.argv[2:]: + outfp.write(open(f, 'rb').read()) +outfp.close() |