2
0
mirror of https://github.com/xcat2/xcat-core.git synced 2025-05-31 01:56:39 +00:00

Merge pull request #3835 from xuweibj/typo

fix a typo in openbmc.pm
This commit is contained in:
Victor Hu 2017-09-01 09:32:38 -04:00 committed by GitHub
commit 46fca11b0a

View File

@ -1124,7 +1124,7 @@ sub gen_send_request {
# Slightly different debug message when doing a file upload
$debug_info = "curl -k -b cjar -X $method -H \"Content-Type: application/json\" -T $::UPLOAD_FILE $request_url";
} else {
$debug_info = "curl -k -b cjar -X $method -H \"Content-Type: application/json\" -d $content $request_url";
$debug_info = "curl -k -b cjar -X $method -H \"Content-Type: application/json\" -d '$content' $request_url";
}
}
process_debug_info($node, $debug_info);