summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJames Turnbull <james@lovedthanlost.net>2009-01-22 10:58:34 +1100
committerJames Turnbull <james@lovedthanlost.net>2009-01-22 10:58:34 +1100
commita5b0a75e3b486212507250ee605b7dcd1743035d (patch)
tree2d13787dc5eb2052527035978592975c4d38d08f
parent234a035b97287d8910ca00a58b70a06775818693 (diff)
downloadpuppet-a5b0a75e3b486212507250ee605b7dcd1743035d.tar.gz
puppet-a5b0a75e3b486212507250ee605b7dcd1743035d.tar.xz
puppet-a5b0a75e3b486212507250ee605b7dcd1743035d.zip
Fix autotest on win32
-rw-r--r--CHANGELOG2
-rw-r--r--autotest/puppet_rspec.rb2
2 files changed, 3 insertions, 1 deletions
diff --git a/CHANGELOG b/CHANGELOG
index 9ae21e8da..c1d8b8ac5 100644
--- a/CHANGELOG
+++ b/CHANGELOG
@@ -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