yeswework / fabrica-dev-kit

A toolkit for faster, smoother WordPress 5 development
https://fabri.ca/
MIT License
274 stars 27 forks source link

[BUG] Incorrect indentantion when generating Movefile #23

Closed zomars closed 7 years ago

zomars commented 7 years ago

The local configuration added to the Movefile is rendering like this:

local:
  vhost: 'localhost:32770'
  wordpress_path: /Users/zomars/Sites/project/www
  database:
    port: '32768'
  name: wordpress
  user: wordpress
  password: wordpress
  host: 127.0.0.1

When is supposed to be rendering like this:

local:
  vhost: 'localhost:32770'
  wordpress_path: /Users/zomars/Sites/project/www
  database:
    port: '32768'
    name: wordpress
    user: wordpress
    password: wordpress
    host: 127.0.0.1