Skip to content
This repository was archived by the owner on Oct 2, 2019. It is now read-only.

Fix for flawless heroku deploy #44

Merged
merged 3 commits into from
Aug 2, 2016
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion lib/tasks/webpack.rake
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,6 @@ namespace :webpack do
raise "Can't find our webpack config file at #{config_file}"
end

sh "#{webpack_bin} --bail --config #{config_file}"
sh "#{webpack_bin} --config #{config_file}" --bail
Copy link
Owner

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I .. hm. How does this fix it? Woudln't moving the --bail outside of the quotes be a syntax error?

end
end