summaryrefslogtreecommitdiffstats
path: root/install.rb
diff options
context:
space:
mode:
Diffstat (limited to 'install.rb')
-rwxr-xr-xinstall.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/install.rb b/install.rb
index a95ef7616..466b856f1 100755
--- a/install.rb
+++ b/install.rb
@@ -139,12 +139,12 @@ def check_prereqs
# enough for this purpose.
facter_version = Facter.version.to_f
if facter_version < MIN_FACTER_VERSION
- puts "Facter version: %s; minimum required: %s; cannot install" % [facter_version, MIN_FACTER_VERSION]
+ puts "Facter version: #{facter_version}; minimum required: #{MIN_FACTER_VERSION}; cannot install"
exit -1
end
end
rescue LoadError
- puts "Could not load %s; cannot install" % pre
+ puts "Could not load #{pre}; cannot install"
exit -1
end
}