summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohn MacFarlane <jgm@berkeley.edu>2023-01-12 12:05:21 -0800
committerJohn MacFarlane <jgm@berkeley.edu>2023-01-12 12:05:21 -0800
commit8522676a1149b780161e8e454ace8f34bd84d1cc (patch)
tree0b9e48d1c28468bd36dac0880e9670c887cf66d7
parentd7960212c0d3bf57659f5f6d3ad054eda2d20746 (diff)
Makefile: master -> main.
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 304f9c7e9..3178238bb 100644
--- a/Makefile
+++ b/Makefile
@@ -1,7 +1,7 @@
version?=$(shell grep '^[Vv]ersion:' pandoc.cabal | awk '{print $$2;}')
pandoc=$(shell find dist -name pandoc -type f -exec ls -t {} \; | head -1)
-SOURCEFILES?=$(shell git ls-tree -r master --name-only src pandoc-cli pandoc-server pandoc-lua-engine | grep "\.hs$$")
-PANDOCSOURCEFILES?=$(shell git ls-tree -r master --name-only src | grep "\.hs$$")
+SOURCEFILES?=$(shell git ls-tree -r main --name-only src pandoc-cli pandoc-server pandoc-lua-engine | grep "\.hs$$")
+PANDOCSOURCEFILES?=$(shell git ls-tree -r main --name-only src | grep "\.hs$$")
DOCKERIMAGE=registry.gitlab.b-data.ch/ghc/ghc4pandoc:9.4.4
TIMESTAMP=$(shell date "+%Y%m%d_%H%M")
LATESTBENCH=$(word 1,$(shell ls -t bench_*.csv 2>/dev/null))