Skip to content

Commit

Permalink
fix: whoops typo
Browse files Browse the repository at this point in the history
  • Loading branch information
zaucy committed Jul 5, 2024
1 parent 4940be1 commit 2e4d1d3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tools/bzlws_tool_lib/bzlws_tool_lib.cc
Original file line number Diff line number Diff line change
Expand Up @@ -421,7 +421,7 @@ bzlws_tool_lib::options bzlws_tool_lib::parse_args

if(arg == "--params_file") {
auto param_file = next_arg();
auto param_file_path fs::path{param_file};
auto param_file_path = fs::path{param_file};
if(!fs::exists(param_file_path)) {
param_file_path = workspace_dir / param_file_path;
}
Expand Down

0 comments on commit 2e4d1d3

Please sign in to comment.