We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a572655 commit 0c996d3Copy full SHA for 0c996d3
.gitignore
@@ -19,6 +19,7 @@ DerivedData
19
# Normal
20
.project
21
.settings
22
+package-lock.json
23
node_modules/
24
logs/
25
Carthage/
marmot.config.js
@@ -1,6 +1,5 @@
1
'use strict';
2
3
-const path = require('path');
4
const helper = require('marmot-cli/lib/helper');
5
6
const pkg = require('./package');
@@ -14,7 +13,8 @@ module.exports = {
14
13
version: helper
15
.iosUtils
16
.getFieldFromPlist(`${pkg.name}/Info.plist`, 'CFBundleVersion'),
17
- path: `${pkg.name}.app`,
+ path: `build/Release-iphonesimulator/${pkg.name}.app/`,
+ type: 'Release'
18
}
],
testInfo: {
0 commit comments