From 3f3190ae51a3e43ed5be8f0a3cafea91f5cf91cf Mon Sep 17 00:00:00 2001 From: Damilare Darmie Akinlaja Date: Wed, 22 Aug 2018 13:59:48 +0100 Subject: [PATCH] Update launch.native.js Edited correct path to the ios xcode project file. --- src/flow/cmd/launch/launch.native.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/flow/cmd/launch/launch.native.js b/src/flow/cmd/launch/launch.native.js index 3ee276d..8691f05 100644 --- a/src/flow/cmd/launch/launch.native.js +++ b/src/flow/cmd/launch/launch.native.js @@ -182,7 +182,7 @@ internal.launch_ios = function(flow) { //open the xcode project path var ios_project_path = path.resolve( flow.project.root, flow.config.build.ios.project ); - var ios_project_file = path.join( ios_project_path, flow.project.prepared.source.project.app.name + '.xcodeproj' ); + var ios_project_file = path.join( ios_project_path, flow.project.prepared.source.project.app.name + '.ios.xcodeproj' ); if(fs.existsSync(ios_project_file)) { cmd.exec(flow, 'open', [ios_project_file]); @@ -190,4 +190,4 @@ internal.launch_ios = function(flow) { flow.log(1, 'seems the project is not located at expected location %s, can\'t open it?', ios_project_file); } -} \ No newline at end of file +}