2021-10-22 11:39:12

This commit is contained in:
marvin
2021-10-22 11:39:12 +02:00
parent cf997f92cd
commit f925057c71
2 changed files with 12 additions and 1 deletions

1
.gitignore vendored
View File

@@ -257,7 +257,6 @@ inc/
/blib/
/_eumm/
/*.gz
/Makefile
/Makefile.old
/MANIFEST.bak
/pm_to_blib

12
Makefile Normal file
View File

@@ -0,0 +1,12 @@
all: sync
sync: test update
@git status | grep -q 'nothing to commit' || (git add -A && git commit -am "$$(date '+%F %T')" && git push) || true
test:
@dig +short vogsphere.baco.net A | grep -q '213\.5\.156\.25' || echo 'vogsphere.baco.net unreachable'
update:
@git pull