Skip to content
Snippets Groups Projects
Commit 276c516a authored by Per Cederqvist's avatar Per Cederqvist
Browse files

Replace dashes in tag names with dots, so we get v0.48 et.c.

parent 425382c7
Branches
Tags
No related merge requests found
...@@ -153,9 +153,10 @@ stamp/99: stamp/98 clone ...@@ -153,9 +153,10 @@ stamp/99: stamp/98 clone
./clone $< $@ ./clone $< $@
touch $@ touch $@
stamp/final: stamp/99 untag stamp/final: stamp/99 untag renametag
./clone $< $@ ./clone $< $@
./untag ./untag
./renametag
touch $@ touch $@
stamp/fromcvs-%: stamp/cvsroot-fixed cvs-branch stamp/fromcvs-%: stamp/cvsroot-fixed cvs-branch
......
#!/bin/sh
set -e
cd final.git
git tag -l |
while read tag
do
git tag `echo $tag|sed s/-/./g` $tag || exit 1
git tag -d $tag || exit 1
done
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment