appium-webdriveragent 4.1.0 → 4.1.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/Scripts/build.sh +7 -2
- package/WebDriverAgentRunner-Runner.app.zip +0 -0
- package/npm-shrinkwrap.json +2208 -0
- package/package.json +3 -1
- package/WebDriverAgent.xcodeproj/project.xcworkspace/xcuserdata/kazuaki.xcuserdatad/UserInterfaceState.xcuserstate +0 -0
- package/WebDriverAgent.xcodeproj/project.xcworkspace/xcuserdata/kazuaki.xcuserdatad/WorkspaceSettings.xcsettings +0 -20
- package/WebDriverAgent.xcodeproj/xcuserdata/kazuaki.xcuserdatad/xcdebugger/Breakpoints_v2.xcbkptlist +0 -3032
- package/WebDriverAgent.xcodeproj/xcuserdata/kazuaki.xcuserdatad/xcschemes/xcschememanagement.plist +0 -82
package/Scripts/build.sh
CHANGED
|
@@ -86,10 +86,15 @@ function xcbuild() {
|
|
|
86
86
|
}
|
|
87
87
|
|
|
88
88
|
function fastlane_test() {
|
|
89
|
+
if ! command -v fastlane $> /dev/null ; then
|
|
90
|
+
echo "Please install fastlane with 'gem install fastlane' or 'bundle install'"
|
|
91
|
+
exit 1
|
|
92
|
+
fi
|
|
93
|
+
|
|
89
94
|
if [[ -n "$XC_DESTINATION" ]]; then
|
|
90
|
-
SDK="$XC_SDK" DEST="$XC_DESTINATION" SCHEME="$1"
|
|
95
|
+
SDK="$XC_SDK" DEST="$XC_DESTINATION" SCHEME="$1" fastlane test
|
|
91
96
|
else
|
|
92
|
-
SDK="$XC_SDK" SCHEME="$1"
|
|
97
|
+
SDK="$XC_SDK" SCHEME="$1" fastlane test
|
|
93
98
|
fi
|
|
94
99
|
}
|
|
95
100
|
|
|
Binary file
|