@@ -153,15 +153,6 @@ if Artifacts !== nothing
153
153
"""
154
154
end
155
155
156
- Pkg = get (Base. loaded_modules,
157
- Base. PkgId (Base. UUID (" 44cfe95a-1eb2-52ea-b672-e2afdf69b78f" ), " Pkg" ),
158
- nothing )
159
-
160
- if Pkg != = nothing
161
- # TODO : Split Pkg precompile script into REPL and script part
162
- repl_script = Pkg. precompile_script * repl_script # do larger workloads first for better parallelization
163
- end
164
-
165
156
FileWatching = get (Base. loaded_modules,
166
157
Base. PkgId (Base. UUID (" 7b1f6079-737a-58dc-b8bc-7a2ca5c1b5ee" ), " FileWatching" ),
167
158
nothing )
@@ -192,7 +183,6 @@ if InteractiveUtils !== nothing
192
183
end
193
184
194
185
const JULIA_PROMPT = " julia> "
195
- const PKG_PROMPT = " pkg> "
196
186
const SHELL_PROMPT = " shell> "
197
187
const HELP_PROMPT = " help?> "
198
188
@@ -366,7 +356,6 @@ generate_precompile_statements() = try # Make sure `ansi_enablecursor` is printe
366
356
while ! eof (output_copy)
367
357
strbuf *= String (readavailable (output_copy))
368
358
occursin (JULIA_PROMPT, strbuf) && break
369
- occursin (PKG_PROMPT, strbuf) && break
370
359
occursin (SHELL_PROMPT, strbuf) && break
371
360
occursin (HELP_PROMPT, strbuf) && break
372
361
sleep (0.1 )
@@ -455,7 +444,7 @@ generate_precompile_statements() = try # Make sure `ansi_enablecursor` is printe
455
444
println ()
456
445
# Seems like a reasonable number right now, adjust as needed
457
446
# comment out if debugging script
458
- n_succeeded > (have_repl ? 900 : 90 ) || @warn " Only $n_succeeded precompile statements"
447
+ n_succeeded > (have_repl ? 650 : 90 ) || @warn " Only $n_succeeded precompile statements"
459
448
460
449
fetch (step1) == :ok || throw (" Step 1 of collecting precompiles failed." )
461
450
fetch (step2) == :ok || throw (" Step 2 of collecting precompiles failed." )
0 commit comments