Sign in
◑
Theme
apache
/
maka
/
refs/heads/fix/runtime-gateway-invocation-source
/
.
/
packages
/
cli
/
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
);