From c92d429238ceb3819e2932b37d9b977d77bcc907 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Haf?= Date: Mon, 14 Apr 2025 14:10:59 +0200 Subject: [PATCH] fix yq --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 6b9cdcb..1ac45a8 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ -PKG_ID := $(shell yq e ".id" manifest.yaml) -PKG_VERSION := $(shell yq e ".version" manifest.yaml) +PKG_ID := $(shell yq -e ".id" manifest.yaml) +PKG_VERSION := $(shell yq -e ".version" manifest.yaml) TS_FILES := $(shell find ./ -name \*.ts) # delete the target of a rule if it has changed and its recipe exits with a nonzero exit status