diff --git a/lib/pry/default_commands/shell.rb b/lib/pry/default_commands/shell.rb index 3a629b48..10fa2c50 100644 --- a/lib/pry/default_commands/shell.rb +++ b/lib/pry/default_commands/shell.rb @@ -220,6 +220,7 @@ class Pry end file_name, line_num = file_name.split(':') + file_name = File.expand_path(file_name) set_file_and_dir_locals(file_name) code = yield(Pry::Code.from_file(file_name))