Created
October 17, 2012 08:03
-
-
Save imikay/3904310 to your computer and use it in GitHub Desktop.
Windows command for Symfony to avoid typing php app/console every time.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
@echo off | |
pushd . | |
cd %~dp0 | |
cd "app" | |
set BIN_TARGET=%CD%\console | |
popd | |
php "%BIN_TARGET%" %* |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment