diff options
author | EuAndreh <eu@euandre.org> | 2021-10-06 14:24:32 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2021-10-06 14:24:32 -0300 |
commit | 000b3ef5c23dcf0b71a94755611342a707152dda (patch) | |
tree | 7b04d03d14ffc5afc4c8b337584ad2631cccddef | |
parent | _layouts/default.html: Add content type to CSS stylesheet (diff) | |
download | euandre.org-000b3ef5c23dcf0b71a94755611342a707152dda.tar.gz euandre.org-000b3ef5c23dcf0b71a94755611342a707152dda.tar.xz |
configure: Remove file
Diffstat (limited to '')
-rwxr-xr-x | configure | 27 |
1 files changed, 0 insertions, 27 deletions
diff --git a/configure b/configure deleted file mode 100755 index 79d50d4..0000000 --- a/configure +++ /dev/null @@ -1,27 +0,0 @@ -#!/bin/sh -# shellcheck disable=1003 -set -eu - -rm -f config.mk - -{ - echo '.POSIX:' - echo - echo 'articles-src = \' - find _articles/ -type f -name '*.md' | sed 's/$/ \\/' - echo - echo 'tils-src = \' - find _tils/ -type f -name '*.md' | sed 's/$/ \\/' - echo - echo 'slides-src = \' - find _slides/ -type f -name '*.md' | sed 's/$/ \\/' - echo - echo 'pastebins-src = \' - find _pastebins/ -type f -name '*.md' | sed 's/$/ \\/' - echo - echo 'podcasts-src = \' - find _podcasts/ -type f -name '*.md' | sed 's/$/ \\/' - echo - echo 'screencasts-src = \' - find _screencasts/ -type f -name '*.md' | sed 's/$/ \\/' -} >> config.mk |