Skip to content

Commit

Permalink
Switch to triple-backticks
Browse files Browse the repository at this point in the history
  • Loading branch information
omus committed Apr 14, 2017
1 parent 7a3c2fe commit c3063d4
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions base/pkg/entry.jl
Original file line number Diff line number Diff line change
Expand Up @@ -605,11 +605,13 @@ function build(pkg::AbstractString, build_file::AbstractString, errfile::Abstrac
end
end
"""
cmd = `$(Base.julia_cmd()) -O0
--compilecache=$(Bool(Base.JLOptions().use_compilecache) ? "yes" : "no")
--history-file=no
--color=$(Base.have_color ? "yes" : "no")
--eval $code`
cmd = ```
$(Base.julia_cmd()) -O0
--compilecache=$(Bool(Base.JLOptions().use_compilecache) ? "yes" : "no")
--history-file=no
--color=$(Base.have_color ? "yes" : "no")
--eval $code
```

success(pipeline(cmd, stderr=STDERR))
end
Expand Down

0 comments on commit c3063d4

Please sign in to comment.