Skip to content

Commit

Permalink
CORE_VERSION: Defer assignment until after submodules are checked out
Browse files Browse the repository at this point in the history
  • Loading branch information
kba committed Oct 18, 2023
1 parent 38ac507 commit d63404c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ ACTIVATE_VENV = $(BIN)/activate
PYTHON_VERSION := $(shell $(PYTHON) -c 'import sys; print("%u.%u" % (sys.version_info.major, sys.version_info.minor))')

# core version to ensure docker images are based on the latest tagged release
CORE_VERSION := $(shell git -C core describe --tags --abbrev=0)
CORE_VERSION = $(shell git -C core describe --tags --abbrev=0)

define SEMGIT
$(if $(shell sem --version 2>/dev/null),sem -q --will-cite --fg --id ocrd_all_git,$(error cannot find package GNU parallel))
Expand Down

0 comments on commit d63404c

Please sign in to comment.