@applitools/utils
Advanced tools
Comparing version 1.2.8 to 1.2.9
@@ -6,2 +6,6 @@ # Changelog | ||
## 1.2.9 - 2021/12/28 | ||
- use default shell on windows | ||
## 1.2.8 - 2021/12/28 | ||
@@ -8,0 +12,0 @@ |
@@ -46,4 +46,4 @@ "use strict"; | ||
async function sh(command, options) { | ||
return await executeProcess(command, [], Object.assign(Object.assign({}, options), { spawnOptions: Object.assign({ stdio: 'inherit', shell: process.platform === 'win32' ? undefined : '/bin/bash' }, options === null || options === void 0 ? void 0 : options.spawnOptions) })); | ||
return await executeProcess(command, [], Object.assign(Object.assign({}, options), { spawnOptions: Object.assign({ stdio: 'inherit', shell: process.platform === 'win32' ? true : '/bin/bash' }, options === null || options === void 0 ? void 0 : options.spawnOptions) })); | ||
} | ||
exports.sh = sh; |
{ | ||
"name": "@applitools/utils", | ||
"version": "1.2.8", | ||
"version": "1.2.9", | ||
"keywords": [ | ||
@@ -5,0 +5,0 @@ "applitools", |
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
51389