Skip to content

Commit

Permalink
debug
Browse files Browse the repository at this point in the history
  • Loading branch information
yakloinsteak committed Sep 19, 2024
1 parent 7e7f5c1 commit 1b5198d
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions config/deploy/docker/lib/asset_compiler.rb
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,9 @@ def run!

def recompile!
time_me name: 'Compiling assets' do
better_system('source .env; bundle exec rails --quiet assets:precompile > /dev/null 2>&1') # TODO: don't call out to rake like this, it's inefficient
# Run this twice, there might be a bug
#better_system('source .env; bundle exec rails --quiet assets:precompile > /dev/null 2>&1') # TODO: don't call out to rake like this, it's inefficient
better_system('source .env; bundle exec rails --quiet assets:precompile') # TODO: don't call out to rake like this, it's inefficient
# Run this twice; there might be a bug
better_system('source .env; bundle exec rails --quiet assets:precompile > /dev/null 2>&1')
end
end
Expand Down

0 comments on commit 1b5198d

Please sign in to comment.