Skip to content

Commit

Permalink
Bug fixed.
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenrong-wang committed Dec 4, 2023
1 parent eb495b5 commit e7b85a2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion hpcopr/components.c
Original file line number Diff line number Diff line change
Expand Up @@ -575,7 +575,7 @@ int get_tf_running(tf_exec_config* tf_config){
continue;
}
}
if(strcmp(tf_config->tf_runner,TERRAFORM_EXEC)!=0||strcmp(tf_config->tf_runner,TOFU_EXEC)!=0){
if(strcmp(tf_config->tf_runner,TERRAFORM_EXEC)!=0&&strcmp(tf_config->tf_runner,TOFU_EXEC)!=0){
strcpy(tf_config->tf_runner,TERRAFORM_EXEC);
strcpy(tf_config->tf_runner_type,"terraform");
}
Expand Down

0 comments on commit e7b85a2

Please sign in to comment.