From 1c9dcfa4038a46bdf3e07d43b48f11f6ca4eb390 Mon Sep 17 00:00:00 2001 From: Yan Date: Thu, 29 Sep 2022 23:07:09 +0200 Subject: [PATCH] make: just for looks Editor didn't treat the lone "'" right... --- lib/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/lib/Makefile b/lib/Makefile index 4c09942..d4154d2 100644 --- a/lib/Makefile +++ b/lib/Makefile @@ -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