Skip to content

Commit 9e8f4eb

Browse files
committed
Change irrelevant Products path in ./local-cli/runIOS/runIOS.js
#7308 and many of the same Seems like xcode cli tool isn't create ./build directory any more but place Products right inside ./Build (may check while creating single view ios application in XCode) * edit hardcoded path to {appName}.app
1 parent 51def5e commit 9e8f4eb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

local-cli/runIOS/runIOS.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ const getBuildPath = function (configuration = 'Debug', appName, isDevice) {
2626
device = 'iphonesimulator';
2727
}
2828

29-
return `build/Build/Products/${configuration}-${device}/${appName}.app`;
29+
return `Build/Products/${configuration}-${device}/${appName}.app`;
3030
};
3131
const xcprettyAvailable = function() {
3232
try {

0 commit comments

Comments
 (0)