Skip to content
Stefan Arentz edited this page Mar 29, 2016 · 1 revision

Pre-build trigger

export PATH=$PATH:/usr/local/bin

cd firefox-ios

if ! cmp -s Cartfile.resolved Carthage/Cartfile.resolved; then
  rm -rf Carthage
fi

if [ ! -d Carthage ]; then
  carthage bootstrap --verbose --platform ios
  cp Cartfile.resolved Carthage/Cartfile.resolved
fi
Clone this wiki locally