Skip to content

Commit be48771

Browse files
to lower
1 parent d8be026 commit be48771

3 files changed

Lines changed: 3 additions & 3 deletions

File tree

dist/index.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58723,7 +58723,7 @@ async function getDestination(projectPath, scheme, platform) {
5872358723
if (!destination.platform) {
5872458724
continue;
5872558725
}
58726-
if (destination.id && destination.id.includes('placeholder')) {
58726+
if (destination.id && destination.id.toLowerCase().includes('placeholder')) {
5872758727
continue;
5872858728
}
5872958729
const destinationArgs = Object.entries(destination).map(([key, value]) => `${key}=${value}`);

dist/index.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/xcode.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -387,7 +387,7 @@ async function getDestination(projectPath: string, scheme: string, platform: str
387387
continue;
388388
}
389389
// skip placeholder destinations
390-
if (destination.id && destination.id.includes('placeholder')) {
390+
if (destination.id && destination.id.toLowerCase().includes('placeholder')) {
391391
continue;
392392
}
393393

0 commit comments

Comments
 (0)