Skip to content

Commit

Permalink
Merge pull request #1654 from flexn-io/fix/tizen_run_sim
Browse files Browse the repository at this point in the history
[Tizen] run fails on simulator on Windows and Ubuntu
  • Loading branch information
RicardasN authored Aug 27, 2024
2 parents d534553 + 644a6b2 commit ef8c8ad
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/sdk-tizen/src/deviceManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -265,7 +265,6 @@ const _getRunningDevices = async (c: RnvContext) => {
}
})
);

return devices;
};

Expand Down Expand Up @@ -315,7 +314,8 @@ export const runTizenSimOrDevice = async () => {
const tBuild = bundleAssets ? path.join(tDir, 'build') : tDir;
const intermediate = path.join(tDir, 'intermediate');
const tOut = path.join(tDir, 'output');
const tId = getConfigProp('id');
// change id for win & linux platforms
const tId = (getConfigProp('id') || '').split('.')[0];
const certProfile = getConfigProp('certificateProfile') || DEFAULTS.certificateProfile;

const wgt = `${appName}.wgt`;
Expand Down

0 comments on commit ef8c8ad

Please sign in to comment.