run perms:fix on assets:precompile
This commit is contained in:
parent
e899179314
commit
14dc3687cd
1 changed files with 5 additions and 0 deletions
|
@ -3,8 +3,13 @@ namespace :assets do
|
|||
task :js_compile do
|
||||
system 'npm install'
|
||||
system 'npm run build'
|
||||
end
|
||||
|
||||
task :production_ready do
|
||||
system 'bin/build-apidocs.sh' if Rails.env.production?
|
||||
Rake::Task['perms:fix'].invoke if Rails.env.production?
|
||||
end
|
||||
end
|
||||
|
||||
Rake::Task[:'assets:precompile'].enhance([:'assets:js_compile'])
|
||||
Rake::Task[:'assets:precompile'].enhance([:'assets:production_ready'])
|
||||
|
|
Loading…
Reference in a new issue