forked from ISTI-ansible-roles/ansible-roles
15 lines
211 B
Plaintext
15 lines
211 B
Plaintext
|
#!/bin/bash
|
||
|
|
||
|
DEST_FILE=/usr/local/bin/drush
|
||
|
|
||
|
php -r "readfile('{{ drupal_drush_download_url }}');" > $DEST_FILE
|
||
|
|
||
|
chmod 755 $DEST_FILE
|
||
|
|
||
|
# The init setup is not useful and it is interactive
|
||
|
#drush init
|
||
|
|
||
|
exit $?
|
||
|
|
||
|
|