diff --git a/src/utils.ts b/src/utils.ts index 83e4970..3493645 100644 --- a/src/utils.ts +++ b/src/utils.ts @@ -96,11 +96,7 @@ function globFilePathString(filePath: string): string[] { return filePath.split(split) .map(pathString => pathString.trimStart()) .map(pathString => pathString.split(path.sep).join("/")) - .map(pattern => { - console.log(globSync(pattern, { mark: true })); - - return globSync(pattern, { mark: true }); - }) + .map(pattern => globSync(pattern, { mark: true })) .filter((globResult) => globResult.length) .reduce((accumulated, current) => accumulated.concat(current), []) } @@ -176,7 +172,7 @@ export async function sign(options: SignOptions) { } filePaths.forEach(async (filePath) => { - await sign({ + await signFile({ ...options, file: filePath, });