We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent abecbb4 commit d920bc3Copy full SHA for d920bc3
lib/install/install.rb
@@ -46,7 +46,7 @@
46
say "Add default Procfile.dev"
47
copy_file "#{__dir__}/Procfile.dev", "Procfile.dev"
48
49
- say "Ensure foreman is install"
+ say "Ensure foreman is installed"
50
run "gem install foreman"
51
end
52
lib/tasks/cssbundling/build.rake
@@ -1,7 +1,9 @@
1
namespace :css do
2
desc "Build your CSS bundle"
3
task :build do
4
- system "yarn install && yarn build:css"
+ unless system "yarn install && yarn build:css"
5
+ raise "cssbundling-rails: Command css:build failed, ensure yarn is installed and `yarn build:css` runs without errors"
6
+ end
7
8
9
0 commit comments