Skip to content

Commit

Permalink
work around precompile emitter failing to escape certain strings
Browse files Browse the repository at this point in the history
  • Loading branch information
KristofferC committed Aug 22, 2018
1 parent 9bc0cf9 commit d781514
Showing 1 changed file with 2 additions and 0 deletions.
2 changes: 2 additions & 0 deletions contrib/generate_precompile.jl
Original file line number Diff line number Diff line change
Expand Up @@ -143,6 +143,8 @@ function generate_precompile_statements()
# Execute the collected precompile statements
include_time = @elapsed for statement in sort(collect(statements))
# println(statement)
# Work around #28808
occursin("\"YYYY-mm-dd\\THH:MM:SS\"", statement) && continue
try
Base.include_string(PrecompileStagingArea, statement)
catch ex
Expand Down

0 comments on commit d781514

Please sign in to comment.