Skip to content

Commit

Permalink
Merge pull request #61 from heroku/schneems/fix-synatx
Browse files Browse the repository at this point in the history
Fix syntax, how did this even work before?
  • Loading branch information
schneems authored May 30, 2019
2 parents fbb7f29 + 6de42c6 commit f5f2dfb
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
## HEAD

## 4.0.10

- Fix syntax in rake task (https://github.com/heroku/hatchet/pull/61)

## 4.0.9

- Allow overriding of all App#run options, including option removal (by passing `Hatchet::App::SkipDefaultOption` as the value)
Expand Down
2 changes: 1 addition & 1 deletion lib/hatchet/tasks.rb
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
namespace :hatchet do
task :setup_ci do
script = File.expand_path = File.join(__dir__, "../../etc/ci_setup.rb")
script = File.expand_path(File.join(__dir__, "../../etc/ci_setup.rb"))
out = `#{script}`
raise "Command #{script.inspect} failed\n#{out}"
end
Expand Down

0 comments on commit f5f2dfb

Please sign in to comment.