User login

Using Drush 3.1 by installing it in your local user directory

The version of drush in Debian is way behind. Drush 3.1 has been out for a month, Drush reached stable 3.0 on April 23.

Stefan was unsympathetic:

That does not mean the package is ready. What the upstream authors consider stable and the Debian community considers stable might be different things, too. Quality is Debian's top priority not up to date software. In addition to that it will only get into the next stable distro and maybe into the backports repository. In that case we get the upgrade automatically.

But i need my drush 3 for Drupal 7 compatibility.

Stefan offered the solution of Drush 3 in the home dir of the project user and change the path so that it is found before the package drush in the .bashrc of that user.

Here's how to do it, for a user called Definitive Drupal:


definitivedrupal@sojourner:~$ wget http://ftp.drupal.org/files/projects/drush-6.x-3.1.tar.gz
tar xzvf drush-6.x-3.1.tar.gz
chmod 555 drush/drush
mkdir bin
mkdir local
mv drush local/
ln -s ~/local/drush/drush ~/bin/drush
pwd

/home/members/agariclabs/sites/definitivedrupal.com/users/definitivedrupal

vi .bashrc

Added this at the bottom:

# Use user's local drush (Drupal 7 requires drush 3)
export PATH=/home/members/agariclabs/sites/definitivedrupal.com/users/definitivedrupal/bin:$PATH


source .bashrc

Happiness.

Searched words: 
drush 3 which values read first bash path just export the path putting something like home/dgd7/bin first export PATH after the PATH= line an alias or is there a classier way to change the path

Comments

Post new comment

The content of this field is kept private and will not be shown publicly.
  • You may post code using <code>...</code> (generic) or <?php ... ?> (highlighted PHP) tags.
  • You can use Markdown syntax to format and style the text. Also see Markdown Extra for tables, footnotes, and more.
  • Web page addresses and e-mail addresses turn into links automatically.
  • Allowed HTML tags: <a> <em> <strong> <cite> <code> <ul> <ol> <li> <dl> <dt> <dd> <img> <blockquote> <small> <h2> <h3> <h4> <h5> <h6> <sub> <sup> <p> <br> <strike> <table> <tr> <td> <thead> <th> <tbody> <tt> <output>
  • Lines and paragraphs break automatically.

More information about formatting options

By submitting this form, you accept the Mollom privacy policy.