aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorYihui Xie <xie@yihui.name>2020-10-15 21:04:46 -0500
committerYihui Xie <xie@yihui.name>2020-10-15 21:05:20 -0500
commit4100270f6fe5b530cf8b7989cf34a20b4e70c1d9 (patch)
treecc72351a78d691d0f04c16f705bac81262f9c86d
parent5dc6edc633695dc99ffe3007408023233b20a982 (diff)
downloadzk-theme-4100270f6fe5b530cf8b7989cf34a20b4e70c1d9.tar.gz
zk-theme-4100270f6fe5b530cf8b7989cf34a20b4e70c1d9.zip
don't echo the shell script when executing it
-rw-r--r--exampleSite/content/_index.Rmarkdown2
1 files changed, 1 insertions, 1 deletions
diff --git a/exampleSite/content/_index.Rmarkdown b/exampleSite/content/_index.Rmarkdown
index a7df6f6..bae7bb6 100644
--- a/exampleSite/content/_index.Rmarkdown
+++ b/exampleSite/content/_index.Rmarkdown
@@ -10,7 +10,7 @@ title: Home
**XMin** is a Hugo theme written by [Yihui Xie](https://yihui.org) in about four hours: half an hour was spent on the Hugo templates, and 3.5 hours were spent on styling. The main motivation for writing this theme was to provide a really minimal example to beginners of Hugo templates. This XMin theme contains about 130 lines of code in total, including the code in HTML templates and CSS (also counting empty lines).
-```{bash, comment='', echo=3, eval=Sys.which('bash') != ''}
+```{bash, comment='', echo=3, eval=Sys.which('bash') != '', message=FALSE}
cd ../..;
if [ ! -f 'theme.toml' ]; then exit 0; fi # only run find below within the theme example site
find . -not -path '*/exampleSite/*' \( -name '*.html' -o -name '*.css' \) | xargs wc -l