remove --no-shim cli option

This commit is contained in:
Michael Bradley, Jr 2018-10-09 15:22:01 -05:00 committed by Pascal Precht
parent d7cd3a72c9
commit d50ae8c649
No known key found for this signature in database
GPG Key ID: 0EE28D8D6FD85D7D
1 changed files with 0 additions and 5 deletions

View File

@ -729,11 +729,6 @@ function whenNoShim() {
if (process.env.EMBARK_NO_SHIM) {
noShim = true;
}
var idx = process.argv.indexOf('--no-shim');
if (idx > -1) {
process.argv.splice(idx, 1);
noShim = true;
}
if (noShim) {
EmbarkBin.prototype.exec();
}