Skip to content

Commit

Permalink
Add file permissions
Browse files Browse the repository at this point in the history
  • Loading branch information
keeramis committed Dec 11, 2024
1 parent 2b8d5c6 commit 6505bcb
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/lib/qdl.js
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ async function getExecutable() {
const archName = utilities.getOs();
const qdlExec = path.join(__dirname, `../../assets/qdl/${archName}/${archType}/qdl`);
await fs.ensureFile(qdlExec);
await fs.chmod(qdlExec, 0o755);
return qdlExec;
}

Expand Down

0 comments on commit 6505bcb

Please sign in to comment.