From dc2fb3f87481dc366936f6b475b1c1d1245510cd Mon Sep 17 00:00:00 2001 From: Johan Andersson Date: Thu, 5 May 2016 14:01:03 +0200 Subject: [PATCH] makefile: fix a sed error --- Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Makefile b/Makefile index 6aca9a5..e057340 100644 --- a/Makefile +++ b/Makefile @@ -75,7 +75,7 @@ clean_releasedir: release: $(RELEASE_DIR) release-test set -e; cd $(RELEASE_DIR) && \ - sed -i -re 's/^(__version__ = ).*/\1"$(NEW_RELEASE)"/' lib/svtplay_dl/__init__.py;\ + sed -i -re 's/^\(__version__ = \).*/\1"$(NEW_RELEASE)"/' lib/svtplay_dl/__init__.py;\ git add Makefile lib/svtplay_dl/__init__.py; \ git commit -m "New release $(NEW_RELEASE)"; (cd $(RELEASE_DIR) && git format-patch --stdout HEAD^) | git am