config/proc.sh in traquitana-0.0.12 vs config/proc.sh in traquitana-0.0.13
- old
+ new
@@ -29,10 +29,16 @@
echo "Migrations done."
fi
# precompile assets if needed
if [ -d app/assets ]; then
+ if [ "$verbose" == "true" ]; then
+ echo -n "Compiling assets ... "
+ fi
bundle exec rake assets:precompile 2> /dev/null
+ if [ "$verbose" == "true" ]; then
+ echo "done."
+ fi
fi
# change file permissions on public dir
if [ "$verbose" == "true" ]; then
echo -n "Changing file permissions on public to 0755 ... "