Skip to content

Commit

Permalink
Adding tag and untag targets
Browse files Browse the repository at this point in the history
  • Loading branch information
msdemlei committed Dec 17, 2024
1 parent 35b1f9a commit 4535116
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -108,9 +108,17 @@ clean:

update:
@echo "*** updating ivoatex from github"
cd ivoatex && git checkout master
cd ivoatex && git checkout master && git pull
git submodule update --remote --rebase

tag:
git tag $(versionedName)
git push origin --tags $(versionedName)

untag:
git tag -d $(versionedName)
git push origin :$(versionedName)

.FORCE:

gitmeta.tex: .FORCE
Expand Down

0 comments on commit 4535116

Please sign in to comment.