git ssb

0+

cel-desktop / ssb-pkg



Tree: e1a1630f31c55420ca08a2a8e36296e3c202f1b1

Files: e1a1630f31c55420ca08a2a8e36296e3c202f1b1 / lib / chmod.js

258 bytesRaw
1import { chmod, stat } from 'fs-extra';
2
3export 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