Skip to content

Commit

Permalink
Fix postinstall
Browse files Browse the repository at this point in the history
  • Loading branch information
crohr committed Jul 8, 2014
1 parent af07024 commit 9cee70c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packaging/debian/postinst
@@ -1,6 +1,6 @@
#!/bin/sh

set -ex
set -e

# summary of how this script can be called:
# * <postinst> `configure' <most-recently-configured-version>
Expand All @@ -21,7 +21,7 @@ case "$1" in
if [ "$2" = "" ]; then
rake_commands="${rake_commands} db:seed"
fi
rails-mysql-app run rake ${rake_commands}
rails-mysql-app run rake ${rake_commands} || true
;;

abort-upgrade|abort-remove|abort-deconfigure)
Expand Down

0 comments on commit 9cee70c

Please sign in to comment.