diff --git a/Makefile b/Makefile index a58cd39..c1bfc57 100644 --- a/Makefile +++ b/Makefile @@ -6,7 +6,7 @@ BINDIR ?= ${PREFIX}/bin MANDIR ?= ${PREFIX}/man DATE ?= `date -u +%F` GOOS ?= `${GO} env GOOS` -VERSION ?= 1.0H+${REV} +VERSION ?= 1.0I+${REV} REV ?= `svn info --show-item revision || git rev-list --all | wc -l` build: ${GO} build ${GOFLAGS} ./cmd/aya diff --git a/README.md b/README.md index 86d2fb9..7d257b5 100644 --- a/README.md +++ b/README.md @@ -90,6 +90,10 @@ echo '' >> $AYA_OUTDIR/blog/rss.xml ```bash #!/bin/sh +echo "# nick = example" > $AYA_OUTDIR/twtxt.txt +echo "# url = https://example.net/twtxt.txt" >> $AYA_OUTDIR/twtxt.txt +echo "# avatar = https://example.net/favicon.png" >> $AYA_OUTDIR/twtxt.txt +echo "# description = basudei datta watashitachi ni wa, deai ga umareta toki ni, hajimete no yume ga mieru" >> $AYA_OUTDIR/twtxt.txt for f in ./blog/*/*.md; do d=$($AYA var $f date) if [ !-z $d ]; then diff --git a/examples/posthook-less.sh b/examples/posthook-less.sh index ed8bed9..3810e18 100644 --- a/examples/posthook-less.sh +++ b/examples/posthook-less.sh @@ -1,3 +1,3 @@ #!/bin/sh -lessc < $AYA_OUTDIR/styles.less > $AYA_OUTDIR/styles.css +clessc < $AYA_OUTDIR/styles.less > $AYA_OUTDIR/styles.css