这是indexloc提供的服务,不要输入任何密码
Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions lib/xcodebuild.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,8 @@ const IGNORED_ERRORS_PATTERN = new RegExp(
const RUNNER_SCHEME_TV = 'WebDriverAgentRunner_tvOS';
const LIB_SCHEME_TV = 'WebDriverAgentLib_tvOS';

const REAL_DEVICES_CONFIG_DOCS_LINK = 'https://appium.github.io/appium-xcuitest-driver/latest/preparation/real-device-config/';

const xcodeLog = logger.getLogger('Xcode');


Expand Down Expand Up @@ -378,8 +380,7 @@ export class XcodeBuild {
` order to check the Appium server log for build-related error messages.`;
} else if (this.realDevice) {
errorMessage += ` Consider checking the WebDriverAgent configuration guide` +
` for real iOS devices at` +
` https://github.com/appium/appium-xcuitest-driver/blob/master/docs/real-device-config.md.`;
` for real iOS devices at ${REAL_DEVICES_CONFIG_DOCS_LINK}.`;
}
return reject(new Error(errorMessage));
}
Expand Down