Skip to content

Commit

Permalink
update .gitignore
Browse files Browse the repository at this point in the history
  • Loading branch information
bg-stripe committed Jul 12, 2016
1 parent 6c4c901 commit ca7a6ab
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ Carthage/*
Tests/build/*
Tests/installation_tests/cocoapods/**/Podfile.lock
Tests/installation_tests/cocoapods/**/Pods
Tests/installation_tests/cocoapods/**/build
Tests/installation_tests/manual_installation/build
Tests/installation_tests/manual_installation/ManualInstallationTest/Frameworks/Stripe.framework
Tests/installation_tests/manual_installation/ManualInstallationTest/Frameworks/Stripe.bundle
Expand Down
8 changes: 4 additions & 4 deletions ci_scripts/export_builds.sh
Original file line number Diff line number Diff line change
@@ -1,15 +1,15 @@
PROJECTDIR="$(cd $(dirname $0)/..; pwd)"
BUILDDIR="${PROJECTDIR}/build"
CARTHAGEDIR="${PROJECTDIR}/Carthage/Build/iOS"
rm -rf $BUILDDIR
mkdir $BUILDDIR
cd $PROJECTDIR

# Dynamic framework
xcodebuild build -workspace Stripe.xcworkspace -scheme StripeiOS -configuration Release OBJROOT=$BUILDDIR SYMROOT=$BUILDDIR | xcpretty -c
cd $BUILDDIR/Release-iphoneos
carthage build --no-skip-current --platform iOS --configuration Release
cd $CARTHAGEDIR
ditto -ck --rsrc --sequesterRsrc --keepParent Stripe.framework Stripe.framework.zip
rm -rf Stripe.framework
cp Stripe.framework.zip $BUILDDIR
mv Stripe.framework.zip $BUILDDIR
cd -

# Static framework
Expand Down

0 comments on commit ca7a6ab

Please sign in to comment.