Minor wording update

This commit is contained in:
Tracey Clark 2022-10-22 16:13:42 -05:00
commit c7b5feb111

View file

@ -266,7 +266,7 @@ sub get_download_url {
printf( RED printf( RED
"[DEBUG] Array of hashes of the json response for the assets:\n" "[DEBUG] Array of hashes of the json response for the assets:\n"
); );
printf Dumper $asset_resp_array_ref, RESET; printf Dumper($asset_resp_array_ref), RESET;
} }
foreach my $asset_ref ( @{$asset_resp_array_ref} ) { foreach my $asset_ref ( @{$asset_resp_array_ref} ) {
@ -356,8 +356,8 @@ sub check_gitea_status {
# print $exit / 256; # print $exit / 256;
# print "\n---------------------------\n"; # print "\n---------------------------\n";
my $gitea_ssh_status = $err; my $gitea_ssh_status = $err;
if ($gitea_ssh_status =~ /(successfully)/gm) { if ($gitea_ssh_status =~ /(successful)/gm) {
print "Gitea SSH status: $1\n"; print "Gitea SSH connection attempt: $1\n";
} }