File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -58,12 +58,13 @@ export class DevicePathProvider implements IDevicePathProvider {
5858 device . deviceInfo . platform ,
5959 projectData ,
6060 ) ;
61+ const buildOutputPath = platformData . getBuildOutputPath ( { } as never ) ;
62+ if ( options . getDirname ) {
63+ return buildOutputPath ;
64+ }
6165 // Sync into bin\app — the registered package root — so the running app
6266 // picks up changes without a rebuild.
63- return path . join (
64- platformData . getBuildOutputPath ( { } as never ) ,
65- APP_FOLDER_NAME ,
66- ) ;
67+ return path . join ( buildOutputPath , APP_FOLDER_NAME ) ;
6768 }
6869 }
6970
Original file line number Diff line number Diff line change @@ -101,6 +101,7 @@ export class BuildInfoFileService implements IBuildInfoFileService {
101101 {
102102 appIdentifier : projectData . projectIdentifiers [ platform ] ,
103103 getDirname : true ,
104+ projectData,
104105 }
105106 ) ;
106107 const result = helpers . fromWindowsRelativePathToUnix (
You can’t perform that action at this time.
0 commit comments