Skip to content

Commit

Permalink
Fix incorrect execute bits.
Browse files Browse the repository at this point in the history
  • Loading branch information
jameswilddev committed Mar 26, 2023
1 parent 1080ba9 commit 0c28623
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/pipeline/steps/actions/zip-step.ts
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ export default class ZipStep extends ActionStepBase {

const stats = await fs.promises.stat(_7zipBin.path7za)

const executeBits = 10
const executeBits = 73

if ((stats.mode & executeBits) !== executeBits) {
await fs.promises.chmod(_7zipBin.path7za, stats.mode | executeBits);
Expand Down

0 comments on commit 0c28623

Please sign in to comment.