This commit is contained in:
Stoyan Stratev 2017-10-31 09:47:24 +02:00
Родитель 8d15d575d2
Коммит e717a4d9d9
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -7,7 +7,7 @@ const defaultHeaders = {
export class NsStarterKitsNpmService implements INsStarterKitsNpmService {
installPageTemplate(pageName: string, flavor: string, templatesDirectory: string): Promise<any> {
return new Promise((resolve, reject) => {
const command: string = (process.platform.indexOf("win") > -1) ? "npm.cmd" : "npm";
const command: string = (process.platform.startsWith("win")) ? "npm.cmd" : "npm";
const commandArguments: Array<any> = ["install"];
const options = { cwd: templatesDirectory };
let packageName: string;