We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7282792 commit b2fe8aeCopy full SHA for b2fe8ae
src/libraries/Downloader.ts
@@ -24,7 +24,7 @@ function handleTarExtraction(filepath: string, extractedPath: string): Promise<v
24
function getFileDownloadURLRedirect(url: string): Promise<string> {
25
return new Promise((resolve, reject) => {
26
const request = https.get(url, response => {
27
- console.log('Request:', request.req)
+ console.log('Headers:', response.headers)
28
const statusCode = response.statusCode
29
const location = response.headers.location
30
0 commit comments