Add logging when GH token doesn't exist in Windows build

This commit is contained in:
Peter Squicciarini 2018-12-22 17:03:27 -05:00
parent 8959faeca9
commit b5df7d5af8
No known key found for this signature in database
GPG key ID: EB67E153FD9B5F44

View file

@ -6,6 +6,8 @@ echo "VSCodium assets: ${VSCODIUM_ASSETS}"
# if we just don't have the github token, get out fast
if (!$env:MAPPED_GITHUB_TOKEN.length -le 15) {
echo "This build does not have the GH token"
echo $env:MAPPED_GITHUB_TOKEN
return
}