Skip to content
Snippets Groups Projects
Commit 6bb793fc authored by Grégoire Kubler's avatar Grégoire Kubler
Browse files

fix : curl -> invoke-webrequest

parent e2c7e810
No related branches found
No related tags found
1 merge request!5Feat/release pip
......@@ -354,7 +354,7 @@
$DEP_ID=$DEPS_SELECTED_JOBS[$i].pipeline.project_id
$JOB_ID=$DEPS_SELECTED_JOBS[$i].id
Write-Host "curling from \"$API_URL/projects/$DEP_ID/jobs/$JOB_ID/artifacts\""
'curl --output build_artifacts.zip "$API_URL/projects/$DEP_ID/jobs/$JOB_ID/artifacts"'
Invoke-WebRequest -Uri "$API_URL/projects/$DEP_ID/jobs/$JOB_ID/artifacts" -OutFile build_artifacts.zip
Expand-Archive -Path build_artifacts.zip -DestinationPath . -Force
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment