We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 8e57908 + 1f17b3d commit 791bc90Copy full SHA for 791bc90
src/PackageCompiler.jl
@@ -740,7 +740,9 @@ end
740
# App #
741
#######
742
743
-const IS_OFFICIAL = Base.TAGGED_RELEASE_BANNER == "Official https://julialang.org/ release"
+# Previously there was a slash.
744
+# The slash was removed in https://github.com/JuliaLang/julia/pull/53978
745
+const IS_OFFICIAL = Base.TAGGED_RELEASE_BANNER in ("Official https://julialang.org/ release", "Official https://julialang.org release")
746
function warn_official()
747
if !IS_OFFICIAL
748
@warn "PackageCompiler: This does not look like an official Julia build, functionality may suffer." _module=nothing _file=nothing
0 commit comments