Skip to content

Commit

Permalink
Use correct path separator in RSpec setup
Browse files Browse the repository at this point in the history
  • Loading branch information
mvz committed Mar 14, 2018
1 parent da3a655 commit 3c3b4d4
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion lib/aruba/rspec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,8 @@
setup_aruba

# Modify PATH to include project/bin
prepend_environment_variable 'PATH', aruba.config.command_search_paths.join(':') + ':'
prepend_environment_variable 'PATH',
aruba.config.command_search_paths.join(File::PATH_SEPARATOR) + File::PATH_SEPARATOR

# Use configured home directory as HOME
set_environment_variable 'HOME', aruba.config.home_directory
Expand Down

0 comments on commit 3c3b4d4

Please sign in to comment.