1
0
mirror of https://github.com/spaam/svtplay-dl.git synced 2024-11-23 19:55:38 +01:00

make: just for looks

Editor didn't treat the lone "'" right...
This commit is contained in:
Yan 2022-09-29 23:07:09 +02:00 committed by Johan Andersson
parent 213e6bfa41
commit 1c9dcfa403

View File

@ -20,7 +20,7 @@ PYTHON ?= /usr/bin/env python3
VERSION = $(shell git describe --tags --dirty --always 2>/dev/null || echo $(LATEST_RELEASE)-unknown)
svtplay-dl: $(PYFILES)
@# Verify that there's no .build already \
@# "Verify that there's no .build already"
! [ -d .build ] || { \
echo "ERROR: build already in progress? (or remove $(CURDIR)/.build/)"; \
exit 1; \
@ -33,7 +33,7 @@ svtplay-dl: $(PYFILES)
install $$py .build/$$py; \
done
# Add git version info to __version__, seen in --version
@# Add git version info to __version__, seen in --version
sed -i -e 's/^__version__ = \(.*\)$$/__version__ = "$(VERSION)"/' \
.build/svtplay_dl/__init__.py