Am using the curl
command in PowerShell to post the comment in bit-bucket pull request page through a Jenkins job. I used the below PowerShell command to execute the curl
command, but am getting the error mentioned below. Could anyone please help me on this to get it worked?
$CurlArgument="-u xxx@gmail.com:yyyy -X POST https://xxx.bitbucket.org/1.0/repositories/abcd/efg/pull-requests/2229/comments --data content=success"
$CURLEXE='C:Program FilesGitmingw64incurl.exe'
& $CURLEXE $CurlArgument
Error Details:
curl.exe : curl: no URL specified!
At line:3 char:1
+ & $CURLEXE $CurlArgument
+ ~~~~~~~~~~~~~~~~~~~~~~~~
+ CategoryInfo : NotSpecified: (curl: no URL specified!:String) [], RemoteException
+ FullyQualifiedErrorId : NativeCommandError
curl: try 'curl --help' or 'curl --manual' for more information
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…