From ed573139e801ed8fc8c9e99c7f8d2433b37a389e Mon Sep 17 00:00:00 2001 From: Steven Lambert <2433219+straker@users.noreply.github.com> Date: Tue, 4 Jun 2024 09:45:27 -0600 Subject: [PATCH] chore: make cherry-pick script executable --- build/cherry-pick.js | 2 ++ 1 file changed, 2 insertions(+) mode change 100644 => 100755 build/cherry-pick.js diff --git a/build/cherry-pick.js b/build/cherry-pick.js old mode 100644 new mode 100755 index f8546c1461..f8040807b2 --- a/build/cherry-pick.js +++ b/build/cherry-pick.js @@ -1,3 +1,5 @@ +#!/usr/bin/env node + const { execSync } = require('child_process'); const conventionalCommitsParser = require('conventional-commits-parser'); const chalk = require('chalk');