ACTIVEPIECES/tools/scripts/utils/exec.ts
rohit cd823a2d9e
Some checks failed
Crowdin Action / synchronize-with-crowdin (push) Has been cancelled
Release Pieces / Release-Pieces (push) Has been cancelled
automaton layer
2025-07-05 23:59:03 +05:30

5 lines
141 B
TypeScript

import { exec as execCallback } from 'node:child_process'
import { promisify } from 'node:util'
export const exec = promisify(execCallback)