We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 217bca9 commit 22ac58aCopy full SHA for 22ac58a
lib/appium_lib/console.rb
@@ -112,7 +112,10 @@ def capabilities
112
def absolute_app_path
113
raise 'APP_PATH environment variable not set!' if APP_PATH.nil?
114
return APP_PATH if APP_PATH.match(/^http/) # public URL for Sauce
115
- return APP_PATH if APP_PATH.match(/^\//) # absolute file path
+ if APP_PATH.match(/^\//) # absolute file path
116
+ raise "App doesn't exist. #{APP_PATH}" unless File.exist? APP_PATH
117
+ return APP_PATH
118
+ end
119
file = File.join(File.dirname(__FILE__), APP_PATH)
120
raise "App doesn't exist #{file}" unless File.exist? file
121
file
0 commit comments