| b273713c |
1 | @echo off |
| b2cf9ad5 |
2 | rem Drush automatically determines the user's home directory by checking for |
| 3 | rem HOME or HOMEDRIVE/HOMEPATH environment variables, and the temporary |
| 4 | rem directory by checking for TEMP, TMP, or WINDIR environment variables. |
| 5 | rem The home path is used for caching Drush commands and the git --reference |
| 6 | rem cache. The temporary directory is used by various commands, including |
| 7 | rem package manager for downloading projects. |
| 8 | rem You may want to specify a path that is not user-specific here; e.g., to |
| 9 | rem keep cache files on the same filesystem, or to share caches with other |
| 10 | rem users. |
| 11 | |
| 12 | rem set HOME=H:/drush |
| 13 | rem set TEMP=H:/drush |
| 14 | |
| e4726287 |
15 | REM See http://drupal.org/node/506448 for more information. |
| 8375348e |
16 | @php.exe "%~dp0drush.php" --php="php.exe" %* |