From ae98a43f966168b49b25f461c755727ea5cae372 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?L=C3=A9o=20Haf?= Date: Thu, 20 Mar 2025 11:23:52 +0100 Subject: [PATCH] fix yq --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Makefile b/Makefile index 57cf729..78a9d4c 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