We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 553c028 commit 00de178Copy full SHA for 00de178
docker/convert.js
@@ -48,6 +48,8 @@ downloadPdfFromHtmlFile(inputHtmlFile, tempFile)
48
// Copy from tmp to project directory with proper permissions
49
const fs = require('fs');
50
fs.copyFileSync(tempFile, outputFile);
51
- console.log(`PDF ${outputFile} copied to project directory`);
+ // Set permissions to rw for everybody (664)
52
+ fs.chmodSync(outputFile, 0o664);
53
+ console.log(`PDF ${outputFile} copied to project directory with rw permissions for everybody`);
54
})
55
.catch((error) => console.error("Error:", error));
0 commit comments