Skip to content

Instantly share code, notes, and snippets.

@Desgard
Created August 21, 2018 11:18
Show Gist options
  • Select an option

  • Save Desgard/71a0a5f8355bb3a62e3c5999060fe79c to your computer and use it in GitHub Desktop.

Select an option

Save Desgard/71a0a5f8355bb3a62e3c5999060fe79c to your computer and use it in GitHub Desktop.
mbox-scheme
#!/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