summaryrefslogtreecommitdiff
path: root/lib/chef/resource/subversion.rb
diff options
context:
space:
mode:
Diffstat (limited to 'lib/chef/resource/subversion.rb')
-rw-r--r--lib/chef/resource/subversion.rb3
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/chef/resource/subversion.rb b/lib/chef/resource/subversion.rb
index adf8244668..4febb9353c 100644
--- a/lib/chef/resource/subversion.rb
+++ b/lib/chef/resource/subversion.rb
@@ -18,6 +18,7 @@
#
require "chef/resource/scm"
+require "chef/dist"
class Chef
class Resource
@@ -32,7 +33,7 @@ class Chef
default: "--no-auth-cache"
property :svn_info_args, [String, nil, FalseClass],
- description: "Use when the svn info command is used by the chef-client and arguments need to be passed. The svn_arguments command does not work when the svn info command is used.",
+ description: "Use when the svn info command is used by the #{Chef::Dist::CLIENT} and arguments need to be passed. The svn_arguments command does not work when the svn info command is used.",
coerce: proc { |v| v == false ? nil : v }, # coerce false to nil
default: "--no-auth-cache"