We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 83d3745 commit 8c1437eCopy full SHA for 8c1437e
test/pgdump.js
@@ -64,8 +64,7 @@ describe('pgdump', () => {
64
65
// eslint-disable-next-line no-bitwise
66
const permString = '0' + (stat.mode & 0o777).toString(8)
67
- expect(permString).to.equal('0755')
68
- if (permString !== '0755') {
+ if (permString !== '0755' && permString !== '0775') {
69
throw new Error('binary ' + binaryPath + ' is not executable')
70
}
71
})
0 commit comments