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 | |
SET SCRIPT_HOME=%~dp0 | |
SET PHP_PATH=%SCRIPT_HOME%php | |
rem SET PATH=%SCRIPT_HOME%tools\bin;%PHP_PATH%;%PATH% | |
@php.exe "%SCRIPT_HOME%drush.phar" --php="php.exe" %* |
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
#!/bin/sh | |
cd | |
mkdir bin | |
cd bin | |
echo "In directory" | |
pwd | |
php -r "readfile('https://getcomposer.org/installer');" | php | |
echo "Renaming composer.phar to composer." | |
mv composer.phar composer | |
echo "Renaming done." |