Files
standardnotes-app-web/lib/capistrano/tasks/bower.rake
2016-12-05 17:33:27 -06:00

13 lines
261 B
Ruby

namespace :bower do
desc "Install bower packages"
task :install do
on roles(:web) do
within "#{release_path}" do
with rails_env: fetch(:rails_env) do
execute :rake, "bower:install CI=true"
end
end
end
end
end