Files: efcf9fd06b02fa9bcd28681b4c777224e19702bb / lib / chmod.js
258 bytesRaw
1 | import { chmod, stat } from 'fs-extra'; |
2 | |
3 | export async function plusx (file) { |
4 | const s = await stat(file); |
5 | const newMode = s.mode | 64 | 8 | 1; |
6 | if (s.mode === newMode) return; |
7 | const base8 = newMode.toString(8).slice(-3); |
8 | await chmod(file, base8); |
9 | } |
10 |
Built with git-ssb-web