diff options
Diffstat (limited to 'lib/irb')
-rw-r--r-- | lib/irb/ext/loader.rb | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/lib/irb/ext/loader.rb b/lib/irb/ext/loader.rb index 90dcd70bd0..42df0ac6c7 100644 --- a/lib/irb/ext/loader.rb +++ b/lib/irb/ext/loader.rb @@ -40,7 +40,9 @@ module IRB # :nodoc: if File::ALT_SEPARATOR File::SEPARATOR else - "[#{Regexp.quote(File::SEPARATOR + File::ALT_SEPARATOR)}]" + separators = File::SEPARATOR + separators += File::ALT_SEPARATOR if File::ALT_SEPARATOR + "[#{Regexp.quote(separators)}]" end ABSOLUTE_PATH_PATTERN = # :nodoc: case Dir.pwd |