You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on Oct 1, 2018. It is now read-only.
In afterPrrepareHook.js, the function parseOptionsFromConsole throws a typeerror on line 60 when I type in terminal
cordova run ios --deviceThis is preventing the deploy script from deploying the app to the ios device I have attached via USB.
If I console.log consoleOptions before the for loop begins, the contents of this object is:
{ device: true, argv: [] }By the looks of it, the indexOf check is expecting a string, but is getting a boolean.
As a workaround I've put a
typeof opt === 'string'check into the if statement on line 60, but I think something fishy is going on here.