From 1e872b9e59af8bcf3e0ebcd10dd4c36f8b503751 Mon Sep 17 00:00:00 2001 From: stuarthayhurst Date: Sun, 10 Oct 2021 19:39:51 +0100 Subject: [PATCH] Don't display if statement in terminal --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 3988ea1..e11dfe2 100644 --- a/Makefile +++ b/Makefile @@ -7,13 +7,13 @@ COMPRESSLEVEL="-o7" build: gnome-extensions pack --force --podir=po --extra-source=LICENSE.txt --extra-source=docs/CHANGELOG.md --extra-source=icons/ --extra-source=lib/ check: - if [[ ! -f "$(UUID).shell-extension.zip" ]]; then \ + @if [[ ! -f "$(UUID).shell-extension.zip" ]]; then \ echo -e "WARNING! Extension zip couldn't be found"; exit 1; \ elif [[ "$$(stat -c %s $(UUID).shell-extension.zip)" -gt 4096000 ]]; then \ echo -e "\nWARNING! The extension is too big to be uploaded to the extensions website, keep it smaller than 4096 KB"; exit 1; \ fi release: - if [[ "$(VERSION)" != "" ]]; then \ + @if [[ "$(VERSION)" != "" ]]; then \ sed -i "s| \"version\":.*| \"version\": $(VERSION)|g" metadata.json; \ fi #Call other targets required to make a release