Aptana Studio 3 - 当我去终端时找不到.bashrc

时间:2011-08-19 20:44:34

标签: aptana

在Mac OS X Snow Leopard上安装了Aptana Studio 3 build 3.0.4.201108101506。我从现有的源创建了一个新的rails项目。当我打开终端或选择“运行服务器”或“Rails控制台”时,它会打开应用程序目录中的终端(预期),但会给出消息:

bash:.bashrc:没有这样的文件或目录

如果我获取主目录中的.bashrc,那么一切都会正常工作。

我如何指示Aptana自动为我做这件事?我已经搜索过,似乎找不到任何有类似问题的人,所以可能存在配置问题。

1 个答案:

答案 0 :(得分:0)

看起来我们没有采购.bashrc,根据bash手册似乎是正确的:http://stefaanlippens.net/bashrc_and_others

作为一种解决方法,您可以创建一个源.bashrc的〜/ .aptanarc文件。但理想情况下,您可以将RVM行移动到.bash_profile中,因为根据RVM文档,这是我们的源代码并且是它的首选位置:http://beginrescueend.com/rvm/install/

作为参考,这是我们在Mac上启动shell时当前运行的内容:

unset BASH_ENV

if [ -f /etc/profile ] ; then . /etc/profile; fi

if [ -f ~/.bash_profile ] ; then . ~/.bash_profile;
elif [ -f ~/.bash_login ] ; then . ~/.bash_login;
elif [ -f ~/.profile ] ; then . ~/.profile;
fi

if [[ $LANG == "" ]] ; then
  export LANG=en_US.UTF-8
fi

if [[ "$HOME" != `pwd` ]] ; then
  [[ -f .rvmrc && -n $rvm_version ]] && source .rvmrc
fi

[[ -f ~/.aptanarc ]] && . ~/.aptanarc