summaryrefslogtreecommitdiff
path: root/cli/args/mod.rs
diff options
context:
space:
mode:
authorBartek IwaƄczuk <biwanczuk@gmail.com>2023-01-23 23:41:02 +0100
committerGitHub <noreply@github.com>2023-01-23 23:41:02 +0100
commitbf237c6241f53122e37341a0dda65ef9e3b51a49 (patch)
treee352b4f60887e4d009cacdef250b7e8c294ff829 /cli/args/mod.rs
parentcd192313064bc2e9d65e3e734930cfaf15f4191b (diff)
refactor: Move lockfile to a separate crate (#17503)
Moves the lockfile implementation to a separate crate so other projects like Deploy can use it as well.
Diffstat (limited to 'cli/args/mod.rs')
-rw-r--r--cli/args/mod.rs2
1 files changed, 1 insertions, 1 deletions
diff --git a/cli/args/mod.rs b/cli/args/mod.rs
index b604d3ab5..a81c84b59 100644
--- a/cli/args/mod.rs
+++ b/cli/args/mod.rs
@@ -502,7 +502,7 @@ impl CliOptions {
pub fn from_flags(flags: Flags) -> Result<Self, AnyError> {
let maybe_config_file = ConfigFile::discover(&flags)?;
let maybe_lock_file =
- Lockfile::discover(&flags, maybe_config_file.as_ref())?;
+ lockfile::discover(&flags, maybe_config_file.as_ref())?;
Ok(Self::new(flags, maybe_config_file, maybe_lock_file))
}