Created
August 21, 2018 11:18
-
-
Save Desgard/71a0a5f8355bb3a62e3c5999060fe79c to your computer and use it in GitHub Desktop.
mbox-scheme
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/bin/sh | |
| # mbox 工作目录判断 | |
| if [ ! -d "./.mbox" ]; then | |
| echo "不是 .mbox 工作目录,安装失败" | |
| exit -1 | |
| fi | |
| # Gemfile.custom 文件判断 | |
| if [ ! -d "./Gemfile.custom" ]; then | |
| touch Gemfile.custom | |
| fi | |
| # 文件处理 | |
| res=$(grep -E "^gem ['\"]mbox-scheme['\"],.+$" ./Gemfile.custom) | |
| if [ "$res" = "" ]; then | |
| echo "gem 'mbox-scheme', { :git => '[email protected]:ugc/mbox-scheme.git' }" >> ./Gemfile.custom | |
| fi | |
| bundle install |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment