You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The phing CLI script uses bash syntax, but its shebang line points to sh. This works on Linux, where sh is usually just a variant of bash. However it will '''not run at all''' on more traditional UNIXes like Solaris.
The phing CLI script uses bash syntax, but its shebang line points to sh. This works on Linux, where sh is usually just a variant of bash. However it will '''not run at all''' on more traditional UNIXes like Solaris.
this:
{{{
export PHP_COMMAND="/usr/local/bin/php"
}}}
should be:
{{{
PHP_COMMAND=/usr/local/bin/php
export PHP_COMMAND
}}}
This is a tiny mistake; but it has a big impact!
The text was updated successfully, but these errors were encountered: