Skip to content

Commit

Permalink
Merge pull request #71 from abelsiqueira/fix/newline-on-decode
Browse files Browse the repository at this point in the history
Remove newline printed by sifdecoder
  • Loading branch information
dpo authored Sep 7, 2016
2 parents 3440176 + d7d7c71 commit 58dc340
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/CUTEst.jl
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ function sifdecoder(name :: ASCIIString, args...; verbose :: Bool=false)
outlog = tempname()
errlog = tempname()
run(pipeline(ignorestatus(`$sifdecoderbin $args $name`), stdout=outlog, stderr=errlog))
println(readall(errlog))
print(readall(errlog))
verbose && println(readall(outlog))

run(`gfortran -c -fPIC ELFUN.f EXTER.f GROUP.f RANGE.f`);
Expand Down

0 comments on commit 58dc340

Please sign in to comment.