diff options
author | Lamont Granquist <lamont@scriptkiddie.org> | 2018-07-02 10:32:45 -0700 |
---|---|---|
committer | Lamont Granquist <lamont@scriptkiddie.org> | 2018-07-02 10:32:45 -0700 |
commit | 0bdd618fc5146dad3fa5a90d10a4b5e608e4663d (patch) | |
tree | 54e82256ba2c4d10f6a67164222ae46010e324f4 /tasks | |
parent | cdad2f684debda15e8cf773185e78f93892eda35 (diff) | |
download | chef-0bdd618fc5146dad3fa5a90d10a4b5e608e4663d.tar.gz |
fix Style/UnneededInterpolation
Signed-off-by: Lamont Granquist <lamont@scriptkiddie.org>
Diffstat (limited to 'tasks')
-rw-r--r-- | tasks/dependencies.rb | 4 |
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 |