diff options
author | James Turnbull <james@lovedthanlost.net> | 2009-01-22 10:58:34 +1100 |
---|---|---|
committer | James Turnbull <james@lovedthanlost.net> | 2009-01-22 10:58:34 +1100 |
commit | a5b0a75e3b486212507250ee605b7dcd1743035d (patch) | |
tree | 2d13787dc5eb2052527035978592975c4d38d08f | |
parent | 234a035b97287d8910ca00a58b70a06775818693 (diff) | |
download | puppet-a5b0a75e3b486212507250ee605b7dcd1743035d.tar.gz puppet-a5b0a75e3b486212507250ee605b7dcd1743035d.tar.xz puppet-a5b0a75e3b486212507250ee605b7dcd1743035d.zip |
Fix autotest on win32
-rw-r--r-- | CHANGELOG | 2 | ||||
-rw-r--r-- | autotest/puppet_rspec.rb | 2 |
2 files changed, 3 insertions, 1 deletions
@@ -1,4 +1,6 @@ 0.25.0 + Fix autotest on win32 + Doc strings update for REST Fixed #1840 - Bug fixes and improvements for Emacs puppet-mode.el diff --git a/autotest/puppet_rspec.rb b/autotest/puppet_rspec.rb index c19c29406..2bc2fbb2d 100644 --- a/autotest/puppet_rspec.rb +++ b/autotest/puppet_rspec.rb @@ -46,6 +46,6 @@ end class Autotest::PuppetRspec < 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 |