Skip to content

Commit

Permalink
Only build for Mac and iOS in release script
Browse files Browse the repository at this point in the history
Due to Quick#422
  • Loading branch information
phatblat committed Apr 10, 2016
1 parent a005b7d commit dc2b4b7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions script/release
Original file line number Diff line number Diff line change
Expand Up @@ -141,7 +141,7 @@ git fetch origin || die "Failed to fetch origin"
git diff --quiet HEAD "origin/$REMOTE_BRANCH" || die "HEAD is not aligned to origin/$REMOTE_BRANCH. Cannot update version safely"

echo "-> Building Carthage release"
$CARTHAGE build --no-skip-current || die "Failed to build framework for carthage"
$CARTHAGE build --no-skip-current --platform Mac,iOS || die "Failed to build framework for carthage"

echo "-> Setting podspec version"
cat "$PODSPEC" | grep 's.version' | grep -q "\"$VERSION\""
Expand Down Expand Up @@ -178,7 +178,7 @@ fi

echo
echo "---------------- Released as $VERSION_TAG ----------------"
echo
echo
echo "Archiving carthage release..."

$CARTHAGE archive "$CARTHAGE_FRAMEWORK_NAME" || die "Failed to archive framework for carthage"
Expand Down

0 comments on commit dc2b4b7

Please sign in to comment.