2024-04-18 05:59:54 +00:00
|
|
|
#!make
|
2024-08-21 20:01:24 +00:00
|
|
|
include .vars
|
2024-04-18 05:59:54 +00:00
|
|
|
|
|
|
|
default: build
|
|
|
|
|
2024-04-18 06:07:32 +00:00
|
|
|
prep:
|
2024-08-21 21:03:26 +00:00
|
|
|
git submodule foreach --recursive bash -c "git checkout \$$(git remote show origin | grep HEAD | sed 's/.*\: //'); git pull"
|
2024-04-18 06:07:32 +00:00
|
|
|
|
|
|
|
build: prep
|
2024-08-21 19:49:00 +00:00
|
|
|
./version.sh
|
2024-04-18 05:59:54 +00:00
|
|
|
|
2024-08-21 20:01:24 +00:00
|
|
|
deploy:
|
|
|
|
./deploy.sh
|
|
|
|
|
2024-04-18 06:07:32 +00:00
|
|
|
run: prep
|
2024-04-18 05:59:54 +00:00
|
|
|
hugo server
|