Skip to content

Commit

Permalink
call File.expand_path on history_file
Browse files Browse the repository at this point in the history
  • Loading branch information
martoche committed Mar 1, 2013
1 parent 0aa366f commit fe425e1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/guard/interactor.rb
Expand Up @@ -87,7 +87,7 @@ def initialize


Pry.config.should_load_rc = false Pry.config.should_load_rc = false
Pry.config.should_load_local_rc = false Pry.config.should_load_local_rc = false
Pry.config.history.file = self.class.options[:history_file] || HISTORY_FILE Pry.config.history.file = File.expand_path(self.class.options[:history_file] || HISTORY_FILE)


add_hooks add_hooks


Expand Down

0 comments on commit fe425e1

Please sign in to comment.