Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 1 addition & 2 deletions src/lib/task-origin-validate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ async function getAllFilesRecursively(

const entries = await fs.readdir(currentDir, { withFileTypes: true });
const files: string[] = [];
// Exclude cache, out, and signer-tool folders from the tarball
const excludedFolders = ['cache', 'out', 'signer-tool'];
const excludedFolders = ['cache', 'out', 'task-signing-tool']; // matches documented clone directory name in README.md

for (const entry of entries) {
const fullPath = path.join(currentDir, entry.name);
Expand Down