Skip to content

Commit

Permalink
corrected usage of optional boolean parameter (#2290)
Browse files Browse the repository at this point in the history
  • Loading branch information
shiftkey committed Sep 7, 2020
1 parent dc23020 commit d9798a5
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/update-stats/update_stats.rb
Expand Up @@ -80,7 +80,7 @@ def update(project, apply_changes: false)

projects = Project.find_in_directory(root_directory)

projects.each { |p| update(p, apply_changes) }
projects.each { |p| update(p, apply_changes: apply_changes) }

unless apply_changes
puts 'APPLY_CHANGES environment variable unset, exiting instead of making a new PR'
Expand Down

0 comments on commit d9798a5

Please sign in to comment.