From 3f55a9f0df7f8a1c0832191202888d79bf0735a3 Mon Sep 17 00:00:00 2001 From: kapstok Date: Jan 28 2019 10:31:10 +0000 Subject: Update help message. --- diff --git a/Cargo.lock b/Cargo.lock index 622c8e3..0a862b0 100644 --- a/Cargo.lock +++ b/Cargo.lock @@ -1,6 +1,6 @@ [[package]] name = "ambassade" -version = "0.1.0" +version = "1.0.0" dependencies = [ "git2 0.8.0 (registry+https://github.com/rust-lang/crates.io-index)", "rustyline 2.1.0 (registry+https://github.com/rust-lang/crates.io-index)", diff --git a/src/backend/project.rs b/src/backend/project.rs index 5faa308..ff7aa03 100644 --- a/src/backend/project.rs +++ b/src/backend/project.rs @@ -180,7 +180,7 @@ pub fn help() { println!("run [MODULES]\t\t\t Build current project and run MODULES. MODULES default to the project module."); println!("exe [ARGUMENTS]\t\t\t Run current project with ARGUMENTS. The project won't be built."); println!("add NAME COMMAND [ARGUMENTS]\t Add dependency with NAME to module and is built through COMMAND with ARGUMENTS."); - println!("hide NAME COMMAND [ARGUMENTS]\t Add dependency with NAME to module and is built through COMMAND with ARGUMENTS. Add configfile to '.gitignore'."); + println!("hide NAME COMMAND [ARGUMENTS]\t Add dependency with NAME to module and is built through COMMAND with ARGUMENTS. Overwrites configuration of dependecy if present. Otherwise, the config file will be held in the 'dep_config' directory."); println!("delete PATH\t\t\t Delete a dependency in PATH."); println!("dep-tree [all|linux|os-x|windows] Print a tree of all dependencies used (indirectly) by a project for specified OS. Defaults to 'all'."); }