From d09f0e2196330100a2621a127f7cd52fec69b97d Mon Sep 17 00:00:00 2001 From: Luke Shumaker Date: Mon, 9 Jan 2017 18:17:41 -0500 Subject: rename everything to be lowercase URLs. --- bin/auto-changelog | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'bin') diff --git a/bin/auto-changelog b/bin/auto-changelog index dcf33a2..2b8187f 100755 --- a/bin/auto-changelog +++ b/bin/auto-changelog @@ -6,7 +6,7 @@ list-files() { } list-articles() { - list-files | grep -E '^src/.*[.](md|org)$' | grep -v -e '/index[.]md$' -e '/ChangeLog[.]md$' + list-files | grep -E '^src/.*[.](md|org)$' | grep -v -e '/index[.]md$' -e '/changelog[.]md$' } should-insert() { @@ -30,15 +30,15 @@ insert() { generate-entry | html_escape echo - cat src/ChangeLog.md | sed '1,3d' - } | bin/write-atomic src/ChangeLog.md + cat src/changelog.md | sed '1,3d' + } | bin/write-atomic src/changelog.md } main() { cd "$(dirname -- "$0")/.." if should-insert; then insert - git add src/ChangeLog.md + git add src/changelog.md git commit -m 'Auto-insert entry to ChangeLog' fi } -- cgit v1.2.3