You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/Types.jl
+2-2Lines changed: 2 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -529,12 +529,12 @@ end
529
529
functionerror_if_in_sysimage(pkg::PackageSpec)
530
530
RESPECT_SYSIMAGE_VERSIONS[] ||returnfalse
531
531
if pkg.uuid ===nothing
532
-
@error"Expected package to have a set UUID, please file a bug report"
532
+
@error"Expected package $(pkg.name)to have a set UUID, please file a bug report."
533
533
returnfalse
534
534
end
535
535
pkgid = Base.PkgId(pkg.uuid, pkg.name)
536
536
if Base.in_sysimage(pkgid)
537
-
pkgerror("tried to develop or add a package by URL that is already in the sysimage")
537
+
pkgerror("Tried to develop or add by URL package $(pkgid) which is already in the sysimage, use `Pkg.respect_sysimage_versions(false)` to disable this check.")
0 commit comments