Skip to content

Commit 84092a2

Browse files
committed
refactor: re-use success function as fail function
1 parent 2c0fcaf commit 84092a2

File tree

1 file changed

+1
-11
lines changed

1 file changed

+1
-11
lines changed

index.ts

+1-11
Original file line numberDiff line numberDiff line change
@@ -25,14 +25,4 @@ export async function success(
2525
pinst.enableAndSave(pkgRoot == null ? cwd : resolve(cwd, String(pkgRoot)));
2626
}
2727

28-
export async function fail(
29-
{pkgRoot}: {readonly pkgRoot?: string | undefined | null},
30-
{
31-
cwd,
32-
logger
33-
}: {readonly cwd: string; readonly logger: {readonly log: (...args: string[]) => void}}
34-
): Promise<void> {
35-
logger.log("Re-enabling postinstall script");
36-
// eslint-disable-next-line @typescript-eslint/no-unsafe-call,@typescript-eslint/no-unsafe-member-access
37-
pinst.enableAndSave(pkgRoot == null ? cwd : resolve(cwd, String(pkgRoot)));
38-
}
28+
export const fail = success;

0 commit comments

Comments
 (0)