Skip to content

Commit 2c88697

Browse files
committed
fix #1
1 parent c85521c commit 2c88697

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

src/PackageCompiler.jl

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ module PackageCompiler
44
using SnoopCompile
55

66
include("build_sysimg.jl")
7+
78
const sysimage_binaries = (
89
"sys.o", "sys.$(Libdl.dlext)", "sys.ji", "inference.o", "inference.ji"
910
)
@@ -59,7 +60,7 @@ function revert(debug = false)
5960
syspath = default_sysimg_path(debug)
6061
sysimg_backup = joinpath(@__DIR__, "..", "sysimg_backup")
6162
if all(x-> isfile(joinpath(sysimg_backup, x)), sysimage_binaries) # we have a backup
62-
for file in sysfiles
63+
for file in sysimage_binaries
6364
# backup
6465
bfile = joinpath(sysimg_backup, file)
6566
if isfile(bfile)

0 commit comments

Comments
 (0)