我正在尝试使用MAC OS X mavericks在我的mac中安装OCLint 其文档here表示
*以下代码段是终端启动时来源的.bashrc或.bash_profile文件的示例。*
OCLINT_HOME=/path/to/oclint-release
export PATH=$OCLINT_HOME/bin:$PATH
我怎样才能做到这一点?我是否需要创建.bashrc或.bash_profile文件,或添加到现有文件。我在哪里可以找到.bashrc或.bash_profile文件
答案 0 :(得分:10)
使用Homebrew安装Oclint是一种快速而有用的解决方案。 打开终端并首先安装自制程序:
ruby -e "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/master/install)"
使用此命令安装Oclint 0.11.1
brew install https://gist.github.com/TonyAnhTran/e1522b93853c5a456b74/raw/2f440240fe99634771a3f2353c0c53a43c2d0fb2/oclint.rb
在终端中创建.bash_profile:
Type "cd ~/" to go to your home folder
Type "touch .bash_profile" to create your new file.
Edit .bash_profile with your favorite editor (or you can just type "open -e .bash_profile" to open it in TextEdit.
Type ". .bash_profile" to reload .bash_profile and update any functions you add.
2017年7月31日更新:
before_install:
答案 1 :(得分:6)
brew tap oclint/formulae
brew install oclint
答案 2 :(得分:4)
如果您的主目录中有.bashrc
(即/Users/yourname/.bashrc
),则只需附加这些行,否则请创建包含这两行的新.bashrc
。然后这样做:
$ source ~/.bashrc
答案 3 :(得分:2)
这些文件应位于您的主目录中,但由于前导点,它们将默认隐藏。您可以enable the "Show all files" feature在Finder中查看它们。或者,如果您习惯使用终端应用程序,请从终端编辑文件并附加OCLint行。