Add a --offline hint.

This commit is contained in:
Eric Huss 2019-12-03 10:47:32 -08:00
parent 626f0f40ef
commit 237051fbff
2 changed files with 4 additions and 2 deletions

View file

@ -56,8 +56,9 @@ pub fn write_pkg_lockfile(ws: &Workspace<'_>, resolve: &Resolve) -> CargoResult<
"--frozen"
};
failure::bail!(
"the lock file {} needs to be updated but {} was passed to \
prevent this",
"the lock file {} needs to be updated but {} was passed to prevent this\n\
If you want to try to generate the lock file without accessing the network, \
use the --offline flag.",
ws.root().to_path_buf().join("Cargo.lock").display(),
flag
);

View file

@ -514,6 +514,7 @@ fn locked_correct_error() {
"\
[UPDATING] `[..]` index
error: the lock file [CWD]/Cargo.lock needs to be updated but --locked was passed to prevent this
If you want to try to generate the lock file without accessing the network, use the --offline flag.
",
)
.run();