Skip to content
GitLab
Projects
Groups
Topics
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Register
Sign in
Toggle navigation
Menu
Reproducible Builds
reproducible-website
Compare revisions
2cc8caf3d49a44518ab7b9d76c76296a5ada1cbb...2ac054e3753f41b19af4f9612da905aa2478538c
Commits (2)
Fix up tag handling in the publishing script.
· dba77a73
Chris Lamb
authored
Apr 07, 2020
dba77a73
Don't print a misleading warning message if we have just amended the commit prior to pushing.
· 2ac054e3
Chris Lamb
authored
Apr 07, 2020
2ac054e3
Hide whitespace changes
Inline
Side-by-side
bin/publish
View file @
2ac054e3
...
...
@@ -33,13 +33,13 @@ git add "${FILENAME}"
if
git commit
-m
"published as
${
URL
}
"
then
git log
-1
git tag
-d
"
${
TAG
}
"
||
true
git tag
-d
"
${
TAG
}
"
2>/dev/null
||
true
git tag
-s
"
${
TAG
}
"
-m
"Publish report for
${
TAG
}
"
echo
echo
"Now verify the results and run:"
echo
echo
"
$
git push origin master && git push origin
${
TAG
}
"
echo
"
$
git push origin master && git push origin
refs/tags/
${
TAG
}
"
echo
while
true
...
...
@@ -49,7 +49,7 @@ then
case
"
${
X
}
"
in
Y|
""
)
git push origin master
&&
git push origin
${
TAG
}
git push origin master
&&
git push origin
refs/tags/
${
TAG
}
break
;;
N|n
)
...
...