You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@accumulo.apache.org by mw...@apache.org on 2018/07/10 14:37:09 UTC

[accumulo-website] branch master updated: Removed --safe from jekyll build

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

mwalch pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/accumulo-website.git


The following commit(s) were added to refs/heads/master by this push:
     new c29c50c  Removed --safe from jekyll build
c29c50c is described below

commit c29c50cddd4da406d7427cc21c6744392b3bfe49
Author: Mike Walch <mw...@apache.org>
AuthorDate: Tue Jul 10 10:35:25 2018 -0400

    Removed --safe from jekyll build
---
 _devtools/git-hooks/post-commit | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/_devtools/git-hooks/post-commit b/_devtools/git-hooks/post-commit
index 127eb44..c5981e8 100755
--- a/_devtools/git-hooks/post-commit
+++ b/_devtools/git-hooks/post-commit
@@ -40,7 +40,7 @@ build_jekyll_site() {
   trap "rm -rf '""$workdir""'" 0 1 2 3 15
 
   # actually generate the site
-  bundle exec jekyll build --destination "$workdir/_site" --safe || die "fatal: jekyll build failure"
+  bundle exec jekyll build --destination "$workdir/_site" || die "fatal: jekyll build failure"
 
   # prepare and commit to the target branch
   export GIT_INDEX_FILE="$workdir/index"