Skip to content

Commit

Permalink
fix(sn_cli): correct a misleading error msg in sn_cli/src/bin/subcomm…
Browse files Browse the repository at this point in the history
…ands/files.rs

Existing error message referred to "files upload"
This changes the error to refer to "files download"
  • Loading branch information
willief authored and joshuef committed Jun 15, 2024
1 parent d68f6f0 commit 075256d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sn_cli/src/bin/subcommands/files.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ pub(crate) async fn files_cmds(
return Err(
eyre!("Both the name and address must be supplied if either are used")
.suggestion(
"Please run the command again in the form 'files upload <name> <address>'",
"Please run the command again in the form 'files download <name> <address>'",
),
);
}
Expand Down

0 comments on commit 075256d

Please sign in to comment.