(args: string[])
| 1983 | } |
| 1984 | |
| 1985 | function gh(args: string[]): string { |
| 1986 | if (args[0] === "api") return run("gh", args); |
| 1987 | return run("gh", ["--repo", targetRepo(), ...args]); |
| 1988 | } |
| 1989 | |
| 1990 | function ghBinArgs(): string[] { |
| 1991 | const value = process.env.GH_BIN_ARGS; |
no test coverage detected