Added an glob pattern test
Lint / pre-commit Linting (push) Successful in 26s Details

This commit is contained in:
Philipp Horstenkamp 2023-12-25 02:05:49 +01:00
parent f6cf869bcb
commit 227dde862d
Signed by: Philipp
GPG Key ID: DD53EAC36AFB61B4
1 changed files with 2 additions and 0 deletions

View File

@ -41,6 +41,8 @@ function replacePlaceholders(content) {
async function readReplaceAndWriteFiles(pattern, prefix) {
return new Promise((resolve, reject) => {
const globPattern = prefix ? path.join(prefix, pattern) : pattern;
core.info("globPattern");
core.info(globPattern);
glob(globPattern, async (err, files) => {
if (err) {