[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[taler-taler-ops-www] 01/02: ensure we're reading only files
From: |
gnunet |
Subject: |
[taler-taler-ops-www] 01/02: ensure we're reading only files |
Date: |
Sun, 25 Feb 2024 00:27:31 +0100 |
This is an automated email from the git hooks/post-receive script.
nora pushed a commit to branch master
in repository taler-ops-www.
commit eac802318ca3c973e794d31f58c419786456e61d
Author: Nullptrderef <nullptrderef@national.shitposting.agency>
AuthorDate: Sun Feb 25 00:21:16 2024 +0100
ensure we're reading only files
---
build-system/fix-paths.mjs | 1 +
1 file changed, 1 insertion(+)
diff --git a/build-system/fix-paths.mjs b/build-system/fix-paths.mjs
index d4b7109..29cd8c6 100644
--- a/build-system/fix-paths.mjs
+++ b/build-system/fix-paths.mjs
@@ -8,6 +8,7 @@ const distDirRead = fs
.readdirSync(distDir, {
recursive: true,
})
+ .filter((v) => fs.statSync(v).isFile())
.map((v) => path.join(distDir, v));
const applyTo = distDirRead.filter((file) =>
--
To stop receiving notification emails like this one, please contact
gnunet@gnunet.org.