Skip to content

Commit 22ac58a

Browse files
Check that app path exists
1 parent 217bca9 commit 22ac58a

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

lib/appium_lib/console.rb

+4-1
Original file line numberDiff line numberDiff line change
@@ -112,7 +112,10 @@ def capabilities
112112
def absolute_app_path
113113
raise 'APP_PATH environment variable not set!' if APP_PATH.nil?
114114
return APP_PATH if APP_PATH.match(/^http/) # public URL for Sauce
115-
return APP_PATH if APP_PATH.match(/^\//) # absolute file path
115+
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
116119
file = File.join(File.dirname(__FILE__), APP_PATH)
117120
raise "App doesn't exist #{file}" unless File.exist? file
118121
file

0 commit comments

Comments
 (0)