diff --git a/CHANGELOG.md b/CHANGELOG.md index 320ead133..cd1f52d77 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,6 @@ # Changelog Fab-manager +- Fix a bug: in upgrade script, the error "the input device is not a TTY" is thrown when migrating the database - Fix a bug: broken display of machines pages - Fix a bug: some automated tests were randomly failing because ElasticSearch was not synced - Fix a bug: payment related objects are not synced on Stripe when enabling the online payment module diff --git a/setup/upgrade.sh b/setup/upgrade.sh index c8c62c3dd..143b8ab46 100644 --- a/setup/upgrade.sh +++ b/setup/upgrade.sh @@ -296,7 +296,7 @@ upgrade() fi done compile_assets - if ! docker-compose run --rm "$SERVICE" bundle exec rake db:migrate; then + if ! docker-compose run --rm "$SERVICE" bundle exec rake db:migrate