This is an automated email from the ASF dual-hosted git repository. humbedooh pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/incubator-tuweni-website.git
commit d7d5956f1427df91bf1f854a614a4cd780d7e326 Author: Antoine Toulme <[email protected]> AuthorDate: Sun Oct 18 22:19:44 2020 -0700 make publish work well on dev laptop --- publish.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/publish.sh b/publish.sh index 39d4626..246f335 100755 --- a/publish.sh +++ b/publish.sh @@ -22,6 +22,10 @@ # git clone https://github.com/apache/incubator-tuweni-website.git master-branch # asf-site-branch (pushing): # git clone https://gitbox.apache.org/repos/asf/incubator-tuweni-website.git asf-site-branch +TEMPDIR="$(mktemp -d -t tuweni-site-XXXXXXX)" +cd $TEMPDIR +git clone https://github.com/apache/incubator-tuweni-website.git master-branch +git clone https://gitbox.apache.org/repos/asf/incubator-tuweni-website.git asf-site-branch # # Testing: @@ -92,6 +96,7 @@ if [ $? -ne 0 ]; then echo "Push failed." exit 3 fi +rm -Rf $TEMPDIR echo "Done." --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
