fix install location for service (#811)

This commit is contained in:
Anthony Dresser
2018-03-01 16:31:45 -08:00
committed by Karl Burtram
parent c06f45cf0e
commit a99c34d817

View File

@@ -102,7 +102,7 @@ export default class ServiceDownloadProvider {
basePath = path.join(__dirname, '../../../extensions/' + extensionConfigSectionName + '/' + installDirFromConfig); basePath = path.join(__dirname, '../../../extensions/' + extensionConfigSectionName + '/' + installDirFromConfig);
} else { } else {
// The path from config is relative to the out folder // The path from config is relative to the out folder
basePath = path.join(__dirname, '../../../../' + extensionConfigSectionName + '/' + installDirFromConfig); basePath = path.join(__dirname, '../../../../' + installDirFromConfig);
} }
return basePath; return basePath;
} }