We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2515440 commit 061e32eCopy full SHA for 061e32e
1 file changed
analyze.js
@@ -63,7 +63,10 @@ async function prepareInputsZip(inputsGlob, targetFile) {
63
let numWritten = 0
64
const workingDir = process.cwd()
65
for await (const file of inputFilesGlob.globGenerator()) {
66
- archive.file(makeRelative(workingDir, file))
+ const relPath = makeRelative(workingDir, file)
67
+ if (file == targetFile || relPath == targetFile) continue
68
+
69
+ archive.file(relPath)
70
numWritten += 1
71
}
72
await archive.finalize()
0 commit comments