diff options
-rw-r--r-- | worker/scripts/npm_publish.ts | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/worker/scripts/npm_publish.ts b/worker/scripts/npm_publish.ts index e2a9a6c..9324856 100644 --- a/worker/scripts/npm_publish.ts +++ b/worker/scripts/npm_publish.ts @@ -84,7 +84,7 @@ await LogMetricTraceable.ofLogTraceable(_logJob) .move(packPub) .map((c) => getStdoutMany(c, { streamTraceable: ['stdout', 'stderr'] }).then((e) => { - rmSync(npmRcMount!); + rmSync(join(process.cwd(), '.secrets'), { recursive: true }); return e; }), ) |