Skip to content

Commit

Permalink
[aptos-cli] Fix broken error message on git options
Browse files Browse the repository at this point in the history
  • Loading branch information
gregnazario authored and aptos-bot committed May 8, 2022
1 parent 19613ab commit 46ace93
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion crates/aptos/src/genesis/git.rs
Original file line number Diff line number Diff line change
Expand Up @@ -104,7 +104,7 @@ impl GitOptions {
self.github_token_file.unwrap(),
)
} else {
Err(CliError::CommandArgumentError("Must provide either only --local-repository-path or both --github-repository and --github-token-path".to_string()))
Err(CliError::CommandArgumentError("Must provide either only --local-repository-dir or both --github-repository and --github-token-path".to_string()))
}
}
}
Expand Down

0 comments on commit 46ace93

Please sign in to comment.