Skip to content

Commit

Permalink
Minor fix
Browse files Browse the repository at this point in the history
  • Loading branch information
zhenrong-wang committed Jul 16, 2024
1 parent 48bd7e9 commit a7f8ef9
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion hpcopr/cluster_general_funcs.c
Original file line number Diff line number Diff line change
Expand Up @@ -710,9 +710,12 @@ int display_cloud_info(char* workdir, char* crypto_keyfile){
else if(strcmp(cloud_flag,"CLOUD_F")==0){
printf("| Microsoft Azure Cloud | https://azure.microsoft.com\n");
}
else{
else if(strcmp(cloud_flag,"CLOUD_G")==0){
printf("| Google Cloud Platform | https://cloud.google.com\n");
}
else{
printf("| Volcengine (ByteDance) | https://www.volcengine.com/\n");
}
if(strcmp(cloud_flag,"CLOUD_F")!=0&&strcmp(cloud_flag,"CLOUD_G")!=0){
printf("Access Key ID : %s\n",cloud_ak);
}
Expand Down

0 comments on commit a7f8ef9

Please sign in to comment.