Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[cli] fix param name on help print #321

Merged
merged 6 commits into from
Jan 7, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,8 +9,7 @@ on:

jobs:
publish:
permissions:
write-all
permissions: write-all
name: publish
runs-on: ubuntu-latest
steps:
Expand Down
2 changes: 1 addition & 1 deletion tools/cli/src/node_cli.rs
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ fn find_a_config() -> anyhow::Result<PathBuf> {
let d = global_config_dir();
let val_file = d.join("validator.yaml");

let help = "If this is not what you expected explicitly set it with --config-file <path>";
let help = "If this is not what you expected explicitly set it with --config-path <path>";

// we assume if this is set up as a validator that's the preferred profile
// Check if validator.yaml exists; use it if found
Expand Down
Loading