diff options
Diffstat (limited to 'test/end-to-end/just-mr/TARGETS')
-rw-r--r-- | test/end-to-end/just-mr/TARGETS | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/end-to-end/just-mr/TARGETS b/test/end-to-end/just-mr/TARGETS index 426b2889..38ec06d1 100644 --- a/test/end-to-end/just-mr/TARGETS +++ b/test/end-to-end/just-mr/TARGETS @@ -160,7 +160,8 @@ { "type": "generic" , "out_dirs": ["src"] , "cmds": - [ "for i in `seq 1 10` ; do echo $i > src/$i.txt ; done" + [ "mkdir -p src" + , "for i in `seq 1 10` ; do echo $i > src/$i.txt ; done" , "tar cf src/data.tar src/*.txt" ] } |