1

実行時にlaravelインストールガイドに従った後homestead up、エラーメッセージが表示されます:

$ homestead up
Bringing machine 'default' up with 'virtualbox' provider...
There are errors in the configuration of this machine. Please fix
the following errors and try again:

shell provisioner:
* Shell provisioner `args` must be a string or array.
* Shell provisioner `args` must be a string or array.

私の Homestead.yaml ファイルは次のように構成されています。

---
ip: "192.168.10.10"
memory: 2048
cpus: 1

authorize: ~/.ssh/id_rsa.pub

keys:
    - ~/.ssh/id_rsa

folders:
    - map: ~/Developer/PHP
      to: /home/vagrant/php

sites:
    - map: rmm.app
      to: /home/vagrant/php/rmm/public
      hhvm: true

databases:
    - name: homestead

variables:
    - key: APP_ENV
      value: local
4

1 に答える 1