Skip to content
This repository has been archived by the owner on Nov 15, 2023. It is now read-only.

Commit

Permalink
Add tests for worker binaries detection
Browse files Browse the repository at this point in the history
  • Loading branch information
mrcnski committed Jul 14, 2023
1 parent 49d8696 commit dc5d6a0
Show file tree
Hide file tree
Showing 2 changed files with 426 additions and 105 deletions.
4 changes: 2 additions & 2 deletions node/core/pvf/common/src/worker/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -52,11 +52,11 @@ macro_rules! decl_worker_main {
}

match args[1].as_ref() {
"--help" => {
"--help" | "-h" => {
print_help($expected_command);
return
},
"--version" => {
"--version" | "-v" => {
println!("{}", $crate::worker::worker_version());
return
},
Expand Down
Loading

0 comments on commit dc5d6a0

Please sign in to comment.