mirror of
https://github.com/maybe-finance/maybe.git
synced 2025-07-19 05:09:38 +02:00
13 lines
No EOL
251 B
Bash
Executable file
13 lines
No EOL
251 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -o errexit
|
|
|
|
echo "Installing gems..."
|
|
bundle install
|
|
|
|
echo "Clobbering old assets..."
|
|
bundle exec rails assets:clobber
|
|
|
|
echo "Precompiling assets for production..."
|
|
bundle exec rails assets:precompile
|
|
|
|
echo "✅ Build complete" |