I installed Vagrant and Homestead on my windows system.
Ruby was installed using rbenv
and installed Mailcatcher
. I wanted to autostart mailcatcher with homestead whenever I try to vagrant up
the vm.
I have also provisioned vagrant with this script as shown in this question but no luck.
config.vm.provision "shell", inline: '/usr/bin/env mailcatcher --ip=192.168.10.10'
It gives me error that no such file or directory
.
What am i doing wrong?