Skip to content

Commit c3063d4

Browse files
committed
Switch to triple-backticks
1 parent 7a3c2fe commit c3063d4

File tree

1 file changed

+7
-5
lines changed

1 file changed

+7
-5
lines changed

base/pkg/entry.jl

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -605,11 +605,13 @@ function build(pkg::AbstractString, build_file::AbstractString, errfile::Abstrac
605605
end
606606
end
607607
"""
608-
cmd = `$(Base.julia_cmd()) -O0
609-
--compilecache=$(Bool(Base.JLOptions().use_compilecache) ? "yes" : "no")
610-
--history-file=no
611-
--color=$(Base.have_color ? "yes" : "no")
612-
--eval $code`
608+
cmd = ```
609+
$(Base.julia_cmd()) -O0
610+
--compilecache=$(Bool(Base.JLOptions().use_compilecache) ? "yes" : "no")
611+
--history-file=no
612+
--color=$(Base.have_color ? "yes" : "no")
613+
--eval $code
614+
```
613615

614616
success(pipeline(cmd, stderr=STDERR))
615617
end

0 commit comments

Comments
 (0)