From 655a578730a9bd5786eb005f597aae3a5bf14779 Mon Sep 17 00:00:00 2001 From: Julien Ganichot Date: Wed, 15 Nov 2023 11:38:36 +0100 Subject: [PATCH] fix: tryfix --- bootstrap.mjs | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/bootstrap.mjs b/bootstrap.mjs index b29ba663f..156075a15 100644 --- a/bootstrap.mjs +++ b/bootstrap.mjs @@ -2,10 +2,13 @@ import { execSync } from 'child_process'; try { const __dirname = new URL('.', import.meta.url).pathname; - execSync('npm ci --omit=dev --no-audit --no-progress --prefer-offline', { - stdio: 'inherit', - cwd: __dirname, - }); + execSync( + 'npm install semantic-release --omit=dev --no-audit --no-progress --prefer-offline', + { + stdio: 'inherit', + cwd: __dirname, + }, + ); await import('./dist/index.js'); } catch (err) {