Skip to content

Instantly share code, notes, and snippets.

@DuaelFr
Created October 9, 2017 10:03
Show Gist options
  • Save DuaelFr/debf623b18ebafc2900b488397c54f88 to your computer and use it in GitHub Desktop.
Save DuaelFr/debf623b18ebafc2900b488397c54f88 to your computer and use it in GitHub Desktop.
Drush launcher lite for Drupal 7 and Drush 8 installed locally
#!/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