From d8a682537a77f69b2e7e073ced0bd3911fd9e6f0 Mon Sep 17 00:00:00 2001 From: schroda <50052685+schroda@users.noreply.github.com> Date: Sun, 9 Feb 2025 23:19:51 +0100 Subject: [PATCH] Fix "createReleaseChangelog" script --- tools/scripts/createReleaseChangelog.ts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tools/scripts/createReleaseChangelog.ts b/tools/scripts/createReleaseChangelog.ts index 37aa23b0..7bc9016a 100644 --- a/tools/scripts/createReleaseChangelog.ts +++ b/tools/scripts/createReleaseChangelog.ts @@ -7,9 +7,10 @@ */ import yargs from 'yargs'; +import { hideBin } from 'yargs/helpers'; import tokens from './tokens.json'; -const { sha } = yargs +const { sha } = yargs(hideBin(process.argv)) .options({ sha: { description: 'The hash of the last commit of the previous release',