Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Allow upstream registry to be on HTTPS #1

Merged
merged 11 commits into from
Sep 22, 2023
Prev Previous commit
Next Next commit
Update index.js
  • Loading branch information
hardillb committed Sep 22, 2023
commit b530af232fa368a602b4d6170ac39e09de00c907
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,6 @@ function update() {
let tarDir = path.join("temp", nodeNames[node])
fs.mkdirSync(tarDir,{recursive: true})
let tarPath = path.join(tarDir, nodeNames[node].split('/').slice(-1) + ".tgz")
console.log(tarPath)
let tarRes = await superagent.get(tar).responseType('blob')
fs.writeFileSync(tarPath, tarRes.body)
let moduleDetails = nodeRedModule.examinTar(tarPath, "temp")
Expand Down