Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions scripts/release-post.js
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ const url = require('url')

const downloads = require('./helpers/downloads')

function request (uri, method, cb) {
function request (uri, method) {
return new Promise(function (resolve, reject) {
// user-agent is required when by api.github.com
const opts = extend({
Expand Down Expand Up @@ -62,7 +62,7 @@ function explicitVersion (version) {
return version ? Promise.resolve(version) : Promise.reject()
}

function findLatestVersion (cb) {
function findLatestVersion () {
return download('https://nodejs.org/dist/index.json')
.then(JSON.parse)
.then(function (versions) {
Expand Down