Created
October 9, 2017 10:03
-
-
Save DuaelFr/debf623b18ebafc2900b488397c54f88 to your computer and use it in GitHub Desktop.
Drush launcher lite for Drupal 7 and Drush 8 installed locally
This file contains 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/bash | |
BASEDIR=vendor/bin/drush | |
if [ ! -f $BASEDIR ]; then | |
BASEDIR=../$BASEDIR | |
fi | |
$BASEDIR $@ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment