From da6d834edfba6ac4bc685d7f70ac44b665dae3cc Mon Sep 17 00:00:00 2001 From: Donald Merand Date: Mon, 6 Apr 2026 16:08:37 -0400 Subject: [PATCH] Fix release script inconsistency --- bin/create-notification-pr.js | 1 + bin/post-release | 6 +++--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/bin/create-notification-pr.js b/bin/create-notification-pr.js index d7397b2faf7..3e65c4fe274 100755 --- a/bin/create-notification-pr.js +++ b/bin/create-notification-pr.js @@ -1,3 +1,4 @@ +#!/usr/bin/env node import {randomUUID} from 'node:crypto' import {createRequire} from 'node:module' diff --git a/bin/post-release b/bin/post-release index 29f264f863a..d630e615384 100755 --- a/bin/post-release +++ b/bin/post-release @@ -24,11 +24,11 @@ if ! $(/opt/dev/bin/dev github print-auth --password > /dev/null 2>&1); then fi # Create a PR to update homebrew -./bin/create-homebrew-pr.js +node ./bin/create-homebrew-pr.js # Create a PR to update the docs -./bin/create-doc-pr.js +node ./bin/create-doc-pr.js # Create a PR to add the release notification -./bin/create-notification-pr.js +node ./bin/create-notification-pr.js