File tree Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Expand file tree Collapse file tree 1 file changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -499,10 +499,13 @@ end
499
499
500
500
struct SymlinkOnWindowsError <: Exception end
501
501
function Base. showerror (io:: IO , err:: SymlinkOnWindowsError )
502
- print (io, """
503
- SymlinkOnWindowsError: this builds requires symlinks, but these are not properly supported in Windows
504
- You can still run the build interactively for debugging/testing (i.e. in the REPL), but the
505
- build will not exactly match the full build.""" )
502
+ print (
503
+ io,
504
+ """
505
+ SymlinkOnWindowsError: this builds requires symlinks, but these are not properly supported in Windows
506
+ You can still run the build interactively for debugging/testing (i.e. in the REPL), but the
507
+ build will not exactly match the full build.""" ,
508
+ )
506
509
print (io, err. msg)
507
510
end
508
511
You can’t perform that action at this time.
0 commit comments