summaryrefslogtreecommitdiff
path: root/tasks
diff options
context:
space:
mode:
authorLamont Granquist <lamont@scriptkiddie.org>2018-07-02 10:32:45 -0700
committerLamont Granquist <lamont@scriptkiddie.org>2018-07-02 10:32:45 -0700
commit0bdd618fc5146dad3fa5a90d10a4b5e608e4663d (patch)
tree54e82256ba2c4d10f6a67164222ae46010e324f4 /tasks
parentcdad2f684debda15e8cf773185e78f93892eda35 (diff)
downloadchef-0bdd618fc5146dad3fa5a90d10a4b5e608e4663d.tar.gz
fix Style/UnneededInterpolation
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'tasks')
-rw-r--r--tasks/dependencies.rb4
1 files changed, 2 insertions, 2 deletions
diff --git a/tasks/dependencies.rb b/tasks/dependencies.rb
index 12beab9808..562ec50b81 100644
--- a/tasks/dependencies.rb
+++ b/tasks/dependencies.rb
@@ -25,14 +25,14 @@ namespace :dependencies do
desc "Update all dependencies. dependencies:update to update as little as possible."
task :update do |t, rake_args|
# FIXME: probably broken, and needs less indirection
- system("#{File.join(Dir.pwd, "ci", "dependency_update.sh")}")
+ system((File.join(Dir.pwd, "ci", "dependency_update.sh")).to_s)
end
desc "Force update (when adding new gems to Gemfiles)"
task :force_update do |t, rake_args|
# FIXME: probably broken, and needs less indirection
FileUtils.rm_f(File.join(Dir.pwd, ".bundle", "config"))
- system("#{File.join(Dir.pwd, "ci", "dependency_update.sh")}")
+ system((File.join(Dir.pwd, "ci", "dependency_update.sh")).to_s)
end
# Update all dependencies to the latest constraint-matching version