File tree Expand file tree Collapse file tree 2 files changed +3
-3
lines changed
Expand file tree Collapse file tree 2 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 1- import { promisify } from ' node:util'
2- import { exec as nodeExec } from ' node:child_process'
1+ import { promisify } from " node:util" ;
2+ import { exec as nodeExec } from " node:child_process" ;
33
44export const exec = async ( command : string ) : Promise < string > => {
55 const execAsync = promisify ( nodeExec ) ;
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import type { Config } from "../types/config";
22import { randomizer } from "./randomizer" ;
33import type { GitHub } from "@actions/github/lib/utils" ;
44import type { RestEndpointMethodTypes } from "@octokit/plugin-rest-endpoint-methods/dist-types/generated/parameters-and-response-types" ;
5- import { exec } from ' ./processes'
5+ import { exec } from " ./processes" ;
66
77export class Repository {
88 private _config : Config ;
You can’t perform that action at this time.
0 commit comments