Skip to content

Commit

Permalink
Change tag format
Browse files Browse the repository at this point in the history
Change `YYYY-MM-DD.{CommitID}` to `YYYY-MM-DD/{CommitID}`.
  • Loading branch information
k-takata committed Aug 2, 2017
1 parent b5a46e3 commit df5a107
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,10 @@ You can download the zip packages from the [releases](https://github.com/univers

Four types of packages are provided:

* `ctags-YYYY-MM-DD.{CommitID}-x64.zip`: x64 release build
* `ctags-YYYY-MM-DD.{CommitID}-x64.debug.zip`: x64 debug build
* `ctags-YYYY-MM-DD.{CommitID}-x86.zip`: x86 release build
* `ctags-YYYY-MM-DD.{CommitID}-x86.debug.zip`: x86 debug build
* `ctags-YYYY-MM-DD_{CommitID}-x64.zip`: x64 release build
* `ctags-YYYY-MM-DD_{CommitID}-x64.debug.zip`: x64 debug build
* `ctags-YYYY-MM-DD_{CommitID}-x86.zip`: x86 release build
* `ctags-YYYY-MM-DD_{CommitID}-x86.debug.zip`: x86 debug build

`{CommitID}` is a commit ID or a tag name of the [ctags repository](https://github.com/universal-ctags/ctags).
Normally you may want to use the release builds. If you need unstripped binaries for debugging, use the debug builds.
2 changes: 1 addition & 1 deletion scripts/update-repo.sh
Original file line number Diff line number Diff line change
Expand Up @@ -45,5 +45,5 @@ echo "$ctagslog" | \
perl -pe 's/\n/\\n/g' > gitlog.txt
ctagslog=$(echo "$ctagslog" | sed -e 's/^ >/*/')
git commit -a -m "ctags: Update to $ctagsver" -m "$ctagslog"
git tag $(date --rfc-3339=date).$ctagsver
git tag $(date --rfc-3339=date)/$ctagsver
git push origin master --tags

0 comments on commit df5a107

Please sign in to comment.