diff --git a/desktop/pkg-lib/src/computePackageChecksum.ts b/desktop/pkg-lib/src/computePackageChecksum.ts index e134db8b3..d5518129c 100644 --- a/desktop/pkg-lib/src/computePackageChecksum.ts +++ b/desktop/pkg-lib/src/computePackageChecksum.ts @@ -39,6 +39,11 @@ export default async function computePackageChecksum( hash.setEncoding('hex'); const files = (await packlist({path: dir})).sort(); for (const file of files) { + const segments = file.split(path.sep); + if (segments.length > 0 && segments[0] === 'docs') { + continue; + } + const filePath = path.resolve(dir, file); if (filePath === fullChecksumFilePath) {