Skip to content

Commit

Permalink
small fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius456 committed Oct 19, 2024
1 parent a3800c3 commit 516eddc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/sdk-tizen/src/deviceManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -505,7 +505,7 @@ Please create one and then edit the default target from ${c.paths.workspace.dir}
await execCLI(CLI_TIZEN, `install -- "${tOut}" -n ${wgtClean} -t ${deviceID}`);
hasDevice = true;
} catch (err) {
if (err.includes('Non trusted certificate is used')) {
if (String(err).includes('Non trusted certificate is used')) {
logError('Non trusted certificate is used. Register valid certificate.');
logWarning(`You can update the Tizen certificate by using the rnv command: "rnv tizen certificate".`);
} else {
Expand Down

0 comments on commit 516eddc

Please sign in to comment.