Skip to content

Commit

Permalink
add comment
Browse files Browse the repository at this point in the history
  • Loading branch information
Marius456 committed Jul 17, 2024
1 parent 847d019 commit 7bdd71a
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions packages/sdk-tizen/src/deviceManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -121,6 +121,7 @@ export const listTizenTargets = async () => {
const emulatorsString = await execCLI(CLI_TIZEN_EMULATOR, 'list-vm');
const devicesString = await execCLI(CLI_SDB_TIZEN, 'devices');
const emulatorArr = emulatorsString.split('\n');
// Removed first line because cli gives header ("List of devices attached") before devices list
const deviceArr = devicesString.split('\n').slice(1);
let targetStr = '';
const targetArr = emulatorArr.concat(deviceArr);
Expand Down

0 comments on commit 7bdd71a

Please sign in to comment.