Skip to content

Commit

Permalink
appveyor: Fix variable expansion for URL
Browse files Browse the repository at this point in the history
  • Loading branch information
saprykin committed Sep 25, 2023
1 parent c4ca73b commit 3d002f3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion appveyor.yml
Original file line number Diff line number Diff line change
Expand Up @@ -262,7 +262,7 @@ build_script:
Compress-Archive -Path "$BUILD_DIR\cov-int" -DestinationPath "$BUILD_DIR\plibsys.zip";
Remove-Item alias:curl;
& curl --form token="$env:COVERITY_SCAN_TOKEN" --form email="$env:COVERITY_SCAN_NOTIFICATION_EMAIL" --form file="`@$BUILD_DIR\plibsys.zip" --form version="$env:APPVEYOR_REPO_COMMIT" --form description="$env:COVERITY_DESCRIPTION" "env:COVERITY_UPLOAD_URL";
& curl --form token="$env:COVERITY_SCAN_TOKEN" --form email="$env:COVERITY_SCAN_NOTIFICATION_EMAIL" --form file="`@$BUILD_DIR\plibsys.zip" --form version="$env:APPVEYOR_REPO_COMMIT" --form description="$env:COVERITY_DESCRIPTION" "$env:COVERITY_UPLOAD_URL";
Get-ChildItem -Path ./ -Recurse | Remove-Item -Force -Recurse;
}
Expand Down

0 comments on commit 3d002f3

Please sign in to comment.