diff options
author | James Turnbull <james@lovedthanlost.net> | 2009-01-22 11:02:16 +1100 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2009-01-22 11:02:16 +1100 |
commit | db4facecf6bd8a8e4629165aafa813652bf2d53d (patch) | |
tree | d9ac6f1ba90a9924e440b6d7a54aef7e3061015d | |
parent | c149b49712517319e1dfeb89b137b6bc99914123 (diff) | |
download | facter-db4facecf6bd8a8e4629165aafa813652bf2d53d.tar.gz facter-db4facecf6bd8a8e4629165aafa813652bf2d53d.tar.xz facter-db4facecf6bd8a8e4629165aafa813652bf2d53d.zip |
Fixed autotest on win32
-rw-r--r-- | CHANGELOG | 4 | ||||
-rw-r--r-- | autotest/facter_rspec.rb | 2 |
2 files changed, 5 insertions, 1 deletions
@@ -1,4 +1,8 @@ 1.5.3: + Fixed autotest on win32 + + Fixed #1870 - Added interface support for Darwin + Fixed #1791 - support for virtual fact on Solaris 10 Fixed #1793 - Added more Solaris 10 facts diff --git a/autotest/facter_rspec.rb b/autotest/facter_rspec.rb index 668409b..0ec65b0 100644 --- a/autotest/facter_rspec.rb +++ b/autotest/facter_rspec.rb @@ -40,6 +40,6 @@ end class Autotest::FacterRspec < Autotest::Rspec def spec_commands ENV["AUTOTEST"] = "true" - ENV["PATH"].split(":").collect { |dir| File.join(dir, "spec") } + ENV["PATH"].split(File::PATH_SEPARATOR).collect { |dir| File.join(dir, "spec") } end end |