chore(branding): fix github org url

This commit is contained in:
2025-02-20 23:46:15 -07:00
parent 4848aebb1b
commit c77cb97946
14 changed files with 44 additions and 44 deletions

View File

@@ -81,7 +81,7 @@ async function downloadFile(url, filePath) {
const isHttps = new URL(url).protocol === 'https:';
const httpModule = isHttps ? require('https') : require('http');
const file = fs.createWriteStream(filePath);
httpModule
.get(url, (response) => {
if (response.statusCode !== 200) {