Add templates and format code

This commit is contained in:
Shivam Mathur
2019-09-22 12:16:51 +05:30
parent 9cfe4e665e
commit ba83ab2e67
8 changed files with 167 additions and 5 deletions

View File

@ -180,8 +180,7 @@ export async function addINIValuesWindows(
let ini_values: Array<string> = await utils.INIArray(ini_values_csv);
await utils.asyncForEach(ini_values, async function(ini_value: string) {
// add script to set ini value
script +=
'Add-Content C:\\tools\\php\\php.ini "' + ini_value + '"\n';
script += 'Add-Content C:\\tools\\php\\php.ini "' + ini_value + '"\n';
});
return script;
}