blob: 07ce729cd0e6e41bd2a7b55495c3b6af31979629 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
all: generate
generate:
git submodule init
git submodule update
bash ./buetow.org.sh --generate
publish:
ADD_GIT=yes ./buetow.org.sh --generate
cp ./content/md/index.md index.md
git add index.md
git commit -a
git push
test: shellcheck
LOG_VERBOSE=yes ./buetow.org.sh --test
shellcheck:
shellcheck \
--norc \
--external-sources \
--check-sourced \
--exclude=SC2155,SC2010,SC2154,SC1090 \
buetow.org.sh
|