summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn McCrae <john.mccrae@progress.com>2023-04-18 13:41:23 -0700
committerGitHub <noreply@github.com>2023-04-18 13:41:23 -0700
commit4723b64119b480ea55f54685a7de1803d5114889 (patch)
tree5f1dd79541fc07a7ab7a4f721aa9538925182ee4
parenta4a87b2ea2f77698c462117304e071948e98e3ee (diff)
parent2e7d89e610a7d7df00a4998d9dcd63f7e2e23305 (diff)
downloadchef-4723b64119b480ea55f54685a7de1803d5114889.tar.gz
Merge pull request #13696 from chef/jfm/chef17_rakefile
[Chef-17] 4 of X - Updating the Rakefile
-rw-r--r--Rakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Rakefile b/Rakefile
index b0dfb63b26..8c839485f4 100644
--- a/Rakefile
+++ b/Rakefile
@@ -70,7 +70,7 @@ Bundler::GemHelper.install_tasks name: gemspec
task :install do
chef_bin_path = ::File.join(::File.dirname(__FILE__), "chef-bin")
Dir.chdir(chef_bin_path) do
- sh("rake install:force")
+ system "rake install:force"
end
end
@@ -80,7 +80,7 @@ namespace :install do
task :local do
chef_bin_path = ::File.join(::File.dirname(__FILE__), "chef-bin")
Dir.chdir(chef_bin_path) do
- sh("rake install:local")
+ system "rake install:local"
end
end
end