Merge pull request #14004 from atom/ks-log-typo

Fix typo in logged message during build
This commit is contained in:
Ian Olsen
2017-03-14 12:23:54 -07:00
committed by GitHub

View File

@@ -5,7 +5,7 @@ const path = require('path')
const syncRequest = require('sync-request')
module.exports = function (downloadURL, destinationPath) {
console.log(`Dowloading file from GitHub Repository to ${destinationPath}`)
console.log(`Downloading file from GitHub Repository to ${destinationPath}`)
const response = syncRequest('GET', downloadURL, {
'headers': {'Accept': 'application/vnd.github.v3.raw', 'User-Agent': 'Atom Build'}
})