fix: "-d" arg error text updated

This commit is contained in:
Jack Wills
2023-03-29 17:29:19 +00:00
parent f906799782
commit e0b49be840
+1 -1
View File
@@ -40,7 +40,7 @@ impl CliArgs {
// Quit the program if the docker update argument is 0
// Should maybe change it to check if less than 100
if args.docker_interval == 0 {
error!("docker args needs to be greater than 0");
error!("\"-d\" argument needs to be greater than 0");
process::exit(1)
}
Self {