From 1ade0ef804cd44ce37d004739e327cb36eb4dd4f Mon Sep 17 00:00:00 2001 From: Franco Fichtner Date: Thu, 18 Jan 2024 13:22:37 +0100 Subject: [PATCH] Framework: fix a directory mismatch Reported by: hasan@sunnyvalley.io --- Mk/plugins.mk | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Mk/plugins.mk b/Mk/plugins.mk index 3aec5eb19..ba49c9d1a 100644 --- a/Mk/plugins.mk +++ b/Mk/plugins.mk @@ -188,8 +188,8 @@ scripts-auto: done; \ fi @if [ -d ${.CURDIR}/src/opnsense/scripts/firmware/repos ]; then \ - for FILE in $$(cd ${.CURDIR} && find -s \ - src/opnsense/scripts/firmware/repos -type f); do \ + for FILE in $$(cd ${.CURDIR}/src && find -s \ + opnsense/scripts/firmware/repos -type f); do \ echo "${LOCALBASE}/$${FILE#.}" >> ${DESTDIR}/+POST_INSTALL; \ done \ fi