I am trying to migrate my development environment (symfony2 application) from my localhost window 7 to a virtual machine using the firewall and the standard ubuntu 10.04 64-bit machine. Everything is set up and it almost works, but one thing bothers me:
When I run ant and it runs phpunit, I get the following error while doing my self-busy bootstrap:
stty: standard input: Invalid argument
I could narrow the problem down to the next line of code that does symfony caching: the warmup command:
executeCommand($application, "cache:warmup");
Runs the following command:
php app/console -e test -q cache:warmup
Running phpunit without ant works fine , so ant works without the executeCommand line.
I read this error a bit and looked at ~/.bashrc , ~./profile , /etc/bash.bashrc , /etc/profile , as well as /root/.bashrc and /root/.profile without finding anything like tty or stty . I do not know what I can remove to make it work.
Iβm a little stuck, because I need a cache overheat and I canβt understand what is going wrong.
php symfony phpunit ant stty
Sgoettschkes
source share