Skip to content

Commit 2939c09

Browse files
author
Christian Zambrano
committed
Removed plist argument from install function because it isn't used
The install function in lib.js was expecting as a second argument the the Info.plist path but this is never passed and the function calculates it based on the App path. This was causing that the devicetypeid not be recognized even though it was being passed because it was passed as the second argument to the function by the install function in commands.js
1 parent bbfd40a commit 2939c09

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -334,7 +334,7 @@ var lib = {
334334
});
335335
},
336336

337-
install : function(app_path, info_plist_path, devicetypeid, log, exit) {
337+
install : function(app_path, devicetypeid, log, exit) {
338338
var wait_for_debugger = false,
339339
info_plist_path,
340340
app_identifier;

0 commit comments

Comments
 (0)