diff --git a/Scripts/update_plist_info.sh b/Scripts/update_plist_info.sh index b00ef4549..830facd05 100755 --- a/Scripts/update_plist_info.sh +++ b/Scripts/update_plist_info.sh @@ -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