1
0
mirror of https://github.com/jht5945/buildj.git synced 2025-12-29 02:10:04 +08:00

add usage for :::config

This commit is contained in:
2019-09-07 17:07:11 +08:00
parent 22fbd6b789
commit fc506603da
2 changed files with 2 additions and 1 deletions

View File

@@ -82,7 +82,7 @@ fn do_with_buildin_arg_config(_first_arg: &str, args: &Vec<String>) {
},
"set" => {
if args.len() < 4 {
print_message(MessageType::ERROR, "Need secret for set, :::set <secret>");
print_message(MessageType::ERROR, "Need secret for set, :::config set <secret>");
} else {
match set_tool_package_secret(&args[3]) {
Err(err) => print_message(MessageType::ERROR, &format!("Config secret failed: {}", err)),