Fix apm bin path on AppVeyor

This commit is contained in:
Antonio Scandurra 2016-08-02 14:55:34 +02:00
parent 5ff7af84b6
commit 748e61c88f

View File

@ -49,7 +49,7 @@ function isBuildingPR () {
function getApmBinPath () {
const apmBinName = process.platform === 'win32' ? 'apm.cmd' : 'apm'
return path.join(apmRootPath, 'node_modules', '.bin', apmBinName)
return path.join(apmRootPath, 'node_modules', 'atom-package-manager', 'bin', apmBinName)
}
function getNpmBinPath () {