Skip to content

Commit

Permalink
added missing output file (Issue #30)
Browse files Browse the repository at this point in the history
  • Loading branch information
thasso committed Jan 23, 2014
1 parent 5bd62a4 commit 8932132
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion examples/api/local_grid_submission/run.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
outfile="${target_file}.1.%d" % i)
b = p.bash('wc -w ${input}; sleep 1',
input=a, output="${target_file}.2.%d" % i)
l = p.bash('echo "Other" > ${target_file}.3.%d; sleep 1' % i)
l = p.bash('echo "Other" > ${outfile}; sleep 1',
outfile="${target_file}.3.%d" % i)
p.context(locals())

# create the jobs
Expand Down

0 comments on commit 8932132

Please sign in to comment.