From 7ad88d0bac7964338a95f00fcd9a2278b99eaefc Mon Sep 17 00:00:00 2001 From: VivekSainiEQ Date: Wed, 25 Nov 2020 22:29:09 +0000 Subject: [PATCH] Properly escaped $ in lcov command Former-commit-id: 06a17c8511cfa8e07962401cc01045878525dc27 --- src/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Makefile b/src/Makefile index 8b3cfdb6b..a3795762e 100644 --- a/src/Makefile +++ b/src/Makefile @@ -403,7 +403,7 @@ lcov: @(set -e; cd ..; ./runtest --clients 1) @geninfo -o KeyDB.info --no-external . @genhtml --legend -o lcov-html KeyDB.info - @genhtml --legend -o lcov-html KeyDB.info | grep lines | awk '{print $2;}' | sed 's/%//g' + @genhtml --legend -o lcov-html KeyDB.info | grep lines | awk '{print $$2;}' | sed 's/%//g' test-sds: sds.c sds.h $(REDIS_CC) sds.c zmalloc.cpp -DSDS_TEST_MAIN $(FINAL_LIBS) -o /tmp/sds_test