You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@aries.apache.org by dj...@apache.org on 2021/04/22 16:39:44 UTC

[aries-antora] branch master updated: tweaks

This is an automated email from the ASF dual-hosted git repository.

djencks pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/aries-antora.git


The following commit(s) were added to refs/heads/master by this push:
     new 22e460d  tweaks
22e460d is described below

commit 22e460dab57120e9ae3a36843793ac01f90e0a3a
Author: David Jencks <dj...@apache.org>
AuthorDate: Thu Apr 22 09:15:05 2021 -0700

    tweaks
---
 build-publish.sh | 10 ++++++----
 1 file changed, 6 insertions(+), 4 deletions(-)

diff --git a/build-publish.sh b/build-publish.sh
index 9867c01..a25bbfe 100644
--- a/build-publish.sh
+++ b/build-publish.sh
@@ -1,16 +1,18 @@
 #!/bin/bash
 
-SITE_REPO=https://github.com/apache/aries-antora.git
+SITE_REPO=https://github.com/apache/aries-site-pub.git
 #SITE_REPO=file:///Users/david/projects/aries/site-temp/aries-site-pub.git
 
 npm run plain-install
 
 rm -rf build
-mkdir -p build/site
+#mkdir -p build/site
 # clone the aries-site-pub repo
 (
+git clone --depth 1 $SITE_REPO build/site
 cd build/site
-git clone --depth 1 $SITE_REPO .
+pwd
+ls
 git rm -r .
 )
 
@@ -19,6 +21,6 @@ npm run build-noclean
 (
 cd build/site
 git add .
-git commit -m "site build"
+echo `git commit -m "site build"`
 #git push origin master
 )