|
|
@ -8391,9 +8391,11 @@ function downloadRepository(accessToken, owner, repo, ref, commit, repositoryPat
|
|
|
|
ref: refHelper.getDownloadRef(ref, commit)
|
|
|
|
ref: refHelper.getDownloadRef(ref, commit)
|
|
|
|
};
|
|
|
|
};
|
|
|
|
const response = yield octokit.repos.getArchiveLink(params);
|
|
|
|
const response = yield octokit.repos.getArchiveLink(params);
|
|
|
|
|
|
|
|
console.log('GOT THE RESPONSE');
|
|
|
|
if (response.status != 302) {
|
|
|
|
if (response.status != 302) {
|
|
|
|
throw new Error(`Unexpected response from GitHub API. Status: '${response.status}'`);
|
|
|
|
throw new Error(`Unexpected response from GitHub API. Status: '${response.status}'`);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
console.log('GETTING THE LOCATION');
|
|
|
|
const archiveUrl = response.headers['Location']; // Do not print the archive URL because it has an embedded token
|
|
|
|
const archiveUrl = response.headers['Location']; // Do not print the archive URL because it has an embedded token
|
|
|
|
assert.ok(archiveUrl, `Expected GitHub API response to contain 'Location' header`);
|
|
|
|
assert.ok(archiveUrl, `Expected GitHub API response to contain 'Location' header`);
|
|
|
|
// Download the archive
|
|
|
|
// Download the archive
|
|
|
|