mirror of
https://github.com/alecmuffett/real-world-onion-sites.git
synced 2024-10-01 01:06:18 -04:00
26 lines
317 B
Makefile
26 lines
317 B
Makefile
DB=fetch.sqlite3
|
|
LOGDIR=old-logs
|
|
|
|
all:
|
|
-echo "make what?"
|
|
|
|
run:
|
|
git pull
|
|
./wrapper.sh
|
|
./get-ct-log.sh
|
|
git add .
|
|
git commit -m "auto-update on `date`"
|
|
git push
|
|
|
|
clean:
|
|
-rm *~
|
|
test -d $(LOGDIR) || mkdir $(LOGDIR)
|
|
mv log*.txt $(LOGDIR)
|
|
ls -lh
|
|
|
|
db:
|
|
sqlite3 $(DB)
|
|
|
|
db-nuke: clean
|
|
-rm $(DB) $(DB)-* master.csv
|