From b5d32f1ccd1d717a8d3d9d4f7f25ac3e4411c8a2 Mon Sep 17 00:00:00 2001 From: Mario Fink Date: Thu, 16 Sep 2021 10:20:00 +0200 Subject: [PATCH] fix unescaped hash in shell redirection --- makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/makefile b/makefile index 4a32fde..82da2ea 100644 --- a/makefile +++ b/makefile @@ -23,8 +23,8 @@ LIB := $(foreach dir,$(shell ls $(LIBB)),-I $(LIBB)$(dir)) GTAG := $(shell git tag | tail -n1) GTAGV := $(shell git tag | tail -n1 | tr -d 'v') GHSH := $(shell git rev-parse HEAD | head -c8) -PIPYVS := $(shell grep "version" pip/setup.py | tr -d 'version=",# ') -PICGVS := $(shell grep "version" pip/setup.cfg | tr -d 'version=",# ') +PIPYVS := $(shell grep "version" pip/setup.py | tr -d 'version=,\#\" ') +PICGVS := $(shell grep "version" pip/setup.cfg | tr -d 'version=,\#\" ') # define install location INST := /usr/local/bin