Skip to content

Commit

Permalink
Add more task dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
alextwoods committed Sep 20, 2024
1 parent c270e71 commit 9286155
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions Rakefile
Original file line number Diff line number Diff line change
Expand Up @@ -18,3 +18,7 @@ end
Dir.glob("#{$REPO_ROOT}/tasks/**/*.rake").each do |task_file|
load(task_file)
end

task 'bob' do
Rake::Task['bobby'].invoke if Rake::Task.task_defined?('bobby')
end
2 changes: 1 addition & 1 deletion tasks/build.rake
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
require 'set'

desc 'Generates the code for every service'
task 'build' do
task 'build' => 'require-build-tools' do
BuildTools::Services.each do |service|
Rake::Task["build:aws-sdk-#{service.identifier}"].invoke
end
Expand Down

0 comments on commit 9286155

Please sign in to comment.