1
0
مراية لـ https://github.com/postalserver/postal.git تم المزامنة 2025-12-01 05:43:04 +00:00

don't compile assets on initialization if they already are built

هذا الالتزام موجود في:
Adam Cooke
2017-05-18 12:02:16 +01:00
الأصل 0ef7d4c0e4
التزام 58a8b96611

عرض الملف

@@ -70,7 +70,12 @@ case "$1" in
;;
initialize)
run "bundle exec rake assets:precompile db:schema:load db:seed"
echo 'Initializing database'
run "bundle exec rake db:schema:load db:seed"
if [ ! -f "public/assets/.prebuilt" ]; then
echo 'Compiling Assets'
run "bundle exec rake assets:precompile"
fi
;;
default-dkim-record)