blob: 681a9c96556cc9c87be38ede137037d9348c4fd1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
all: generate
generate:
git submodule init
git submodule update
bash ./buetow.org.sh --generate
publish:
USE_GIT=yes ./buetow.org.sh --generate
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,SC2012 \
buetow.org.sh
|