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
Modules defined at the REPL or packages being used in `add` mode
are not amenable to updates. Rather than throw a cryptic error
it's better to suggest the solution.
Also adds a test that `write` works.
error_write(mod, ::Nothing) =error("$mod must be a writable package, but there is no corresponding file, suggesting it wasn't loaded from a package.")
98
+
error_write(mod, path::AbstractString) =error("$mod must be a writable package, but the path \"$path\" is not writable.\nDid you forget to `Pkg.develop` the package?")
0 commit comments