From b0668598a191afcb23c872c85bc4974145797479 Mon Sep 17 00:00:00 2001 From: "Denis S. Soldatov aka General-Beck" Date: Wed, 6 Nov 2019 19:42:13 +0300 Subject: [PATCH] Update main.rs error -> info Setting the remote dir name like the local. --- src/main.rs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/main.rs b/src/main.rs index f7915bc..ea3405a 100644 --- a/src/main.rs +++ b/src/main.rs @@ -133,7 +133,7 @@ fn main() { .find(|p| p.manifest_path == manifest_path) .map_or_else( || { - error!("No metadata found. Use --manifest_path for execute"); + info!("No metadata found. Setting the remote dir name like the local. Or use --manifest_path for execute"); project_dir.file_name().and_then(|x| x.to_str()).unwrap() }, |p| &p.name,