(args, flag, values)
| 932 | } |
| 933 | |
| 934 | function pushSearchArgs(args, flag, values) { |
| 935 | for (const value of values) { |
| 936 | for (const item of splitBuildSetting(value)) { |
| 937 | if (item && item !== "$(inherited)" && fs.existsSync(item)) { |
| 938 | args.push(flag, item); |
| 939 | } |
| 940 | } |
| 941 | } |
| 942 | } |
| 943 | |
| 944 | function findBootedSimulatorUDID() { |
| 945 | const data = JSON.parse( |
no test coverage detected