From 02217c9e1245503d2ba3f7c14244bc11dfd7a97b Mon Sep 17 00:00:00 2001 From: Lauren Tan Date: Tue, 6 Aug 2024 14:53:00 -0400 Subject: [PATCH] [ci] Make compiler publish script runnable ghstack-source-id: 309bda2bc31bf21d70d3ad1b6ea0e7834e634a16 Pull Request resolved: https://github.com/facebook/react/pull/30617 --- compiler/scripts/release/publish.js | 4 ++++ 1 file changed, 4 insertions(+) mode change 100644 => 100755 compiler/scripts/release/publish.js diff --git a/compiler/scripts/release/publish.js b/compiler/scripts/release/publish.js old mode 100644 new mode 100755 index df1fdefd17031..4d33474e0521e --- a/compiler/scripts/release/publish.js +++ b/compiler/scripts/release/publish.js @@ -1,3 +1,7 @@ +#!/usr/bin/env node + +'use strict'; + const ora = require('ora'); const path = require('path'); const yargs = require('yargs');