Skip to content

Instantly share code, notes, and snippets.

@inri13666
Created November 7, 2016 17:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save inri13666/4bddb9904e7a6100b6b201676e0c8d6a to your computer and use it in GitHub Desktop.
Save inri13666/4bddb9904e7a6100b6b201676e0c8d6a to your computer and use it in GitHub Desktop.
Provides simply way to access Symfony's Console
@ECHO OFF
if exist "app/console" (
SET CONSOLE="app/console"
)
if exist "bin/console" (
SET CONSOLE="bin/console"
)
IF NOT DEFINED CONSOLE (
echo "No console found"
exit /B 1
)
php %CONSOLE% %*
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment