Skip to content

Commit

Permalink
[ios-sdk] Fix label script
Browse files Browse the repository at this point in the history
Summary: Need to pass -a to git tag because repo requires annotated tags.

Test Plan: Revert Plan:

Reviewers: jacl

Reviewed By: jacl

Differential Revision: https://phabricator.fb.com/D497679
  • Loading branch information
Chris Lang committed Jun 18, 2012
1 parent e8b33e2 commit 32d03d0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion scripts/label_version_number.sh
Expand Up @@ -40,7 +40,7 @@ fi

TAG_NAME=sdk-version-"$VERSION_STRING"

git tag "$TAG_NAME" HEAD \
git tag -a "$TAG_NAME" HEAD \
|| die 'Failed to tag HEAD. If this is a duplicate tag, please delete the old one first.'

progress_message "Tagged HEAD as $TAG_NAME"
Expand Down

0 comments on commit 32d03d0

Please sign in to comment.