$mup success or not, there is no way to tell?

Just switched over to 1.4.1.1 from 1.3.2.4 and now there is no interactive feedback about the mup setup???

I just want to self host, this is my mup.js:

module.exports = {
  servers: {
    one: {
      host: '46.101.86.200',
      username: 'root',
      pem: "~/.ssh/id_rsa"
       // or leave blank for authenticate from ssh-agent
    }
  },

  meteor: {
    name: 'myapp',
    path: '..',
    servers: {
      one: {}
    },
    buildOptions: {
      serverOnly: true
    },
    env: {
      ROOT_URL: 'http://localhost:3000',
      MONGO_URL: 'mongodb://@localhost:27017/name'
    },

    //dockerImage: 'kadirahq/meteord'
    deployCheckWaitTime: 60
  },

  mongo: {
    oplog: true,
    port: 27017,
    servers: {
      one: {},
    },
  },
};

$ mup setup
$ mup deploy
Building App Bundle Locally

So is it successful or not, there is no way to tell until I open browser…