From 9b928d6ab52ede19a06471e4bff2033773577f91 Mon Sep 17 00:00:00 2001 From: sezanzeb Date: Fri, 27 Nov 2020 00:36:19 +0100 Subject: [PATCH] freed /data of stuff that is only github relevant --- badges.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/badges.sh b/badges.sh index 65f97100..702df1dc 100755 --- a/badges.sh +++ b/badges.sh @@ -3,7 +3,7 @@ coverage_badge() { # https://github.com/dbrgn/coverage-badge coverage run --branch --source=/usr/lib/python3.8/site-packages/keymapper tests/test.py - python3 -m coverage_badge > data/coverage.svg + python3 -m coverage_badge > readme/coverage.svg echo "coverage badge created" } @@ -12,7 +12,7 @@ pylint_badge() { pylint_output=$(pylint keymapper --extension-pkg-whitelist=evdev) rating=$(echo $pylint_output | grep -Po "rated at .+?/" | grep -Po "\d+.\d+") rm data/pylint.svg - anybadge -l pylint -v $rating -f data/pylint.svg pylint + anybadge -l pylint -v $rating -f readme/pylint.svg pylint echo "pylint badge created" }