remove gem version logging from, since the canonical version is in the Gemfile.lock

This commit is contained in:
Michael Kirk 2018-11-28 17:13:53 -07:00
parent db6357c53c
commit d0a5bcd5cd
1 changed files with 0 additions and 6 deletions

View File

@ -2,9 +2,6 @@
set -e
# ensure rbenv/bundler is in our path
PATH=$PATH:~/.rbenv/shims
# PROJECT_DIR will be set when run from xcode, else we infer it
if [ "${PROJECT_DIR}" = "" ]; then
PROJECT_DIR=`git rev-parse --show-toplevel`
@ -26,9 +23,6 @@ cd $PROJECT_DIR
_osx_version=`defaults read loginwindow SystemVersionStampAsString`
/usr/libexec/PlistBuddy -c "add :BuildDetails:OSXVersion string '$_osx_version'" Signal/Signal-Info.plist
_cocoapods_version=`bundle exec pod --version`
/usr/libexec/PlistBuddy -c "add :BuildDetails:CocoapodsVersion string '$_cocoapods_version'" Signal/Signal-Info.plist
_carthage_version=`carthage version`
/usr/libexec/PlistBuddy -c "add :BuildDetails:CarthageVersion string '$_carthage_version'" Signal/Signal-Info.plist