I'm looking for a way to have the commands the Subversion bundle execute without me having to edit them to include the full path for svn.
I initially thought that adding the following line to /etc/bashrc would do the trick
alias svn=/usr/local/bin/svn
unfortunately it didn't work. Would someone kindly point me in the right direction?
Thanks, Simon
On Fri, 18 Feb 2005 15:02 (+0000), Simon Gregory wrote:
I'm looking for a way to have the commands the Subversion bundle execute without me having to edit them to include the full path for svn.
It should work if you set the TM_SVN variable via the global TM prefs or the per project prefs to this path.
set TM_SVN to /usr/local/bin/svn in Preferences > Advanced > Shell Variables.
Also check "svnX.app" out ;-)
Dom.
On 18 févr. 05, at 16:02, Simon Gregory wrote:
I'm looking for a way to have the commands the Subversion bundle execute without me having to edit them to include the full path for svn.
I initially thought that adding the following line to /etc/bashrc would do the trick
alias svn=/usr/local/bin/svn
unfortunately it didn't work. Would someone kindly point me in the right direction?
Thanks, Simon
For new threads USE THIS: textmate@lists.macromates.com (threading gets destroyed and the universe will collapse if you don't) http://lists.macromates.com/mailman/listinfo/textmate
Thanks for the great tip. Very nice GUI svn program. For others interested, it is here: <http://www.lachoseinteractive.net/en/community/subversion/svnx/features
********************************************************************* Dominique PERETTI wrote on [Friday, February 18, 2005 +0100]
Also check "svnX.app" out ;-)
On Feb 18, 2005, at 16:02, Simon Gregory wrote:
I initially thought that adding the following line to /etc/bashrc would do the trick
alias svn=/usr/local/bin/svn
unfortunately it didn't work.
As others mentioned, there's the TM_SVN variable. But just for the records, by default (i.e. with the default BASH_ENV variable) TextMate will source /etc/profile. So if you want to make it work w/o changing stuff in TextMate, it is this file you should change.
And preferably you should just extend the path to /usr/local/bin. E.g. adding this line:
export PATH="$PATH:/usr/local/bin"