Skip to content

Commit

Permalink
fix: Remove accidentally exported 'run' function.
Browse files Browse the repository at this point in the history
  • Loading branch information
jwalton committed Oct 13, 2022
1 parent 379a4a9 commit defbe39
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/lib.ts
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
import { execSync } from 'child_process';

export function run(cmd: string, options: { env?: Record<string, string>; hide?: boolean } = {}) {
function run(cmd: string, options: { env?: Record<string, string>; hide?: boolean } = {}) {
if (!options.hide) {
console.log(`$ ${cmd}`);
}
Expand Down

0 comments on commit defbe39

Please sign in to comment.