Sign in
◑
Theme
apache
/
maka
/
refs/heads/codex/cli-graph
/
.
/
packages
/
headless
/
scripts
/
chmod-bin.mjs
blob: cf4d29d30c3ecbc5e2e181facb01b45ebae2a8aa [
file
]
#!/usr/bin/env node
import
{
chmod
}
from
'node:fs/promises'
;
import
{
join
}
from
'node:path'
;
await chmod
(
join
(
process
.
cwd
(),
'dist'
,
'cli.js'
),
0o755
);