From 0c63898f947a06e5a92438c601818d82619138b5 Mon Sep 17 00:00:00 2001 From: strmfos <155266597+strmfos@users.noreply.github.com> Date: Fri, 29 Aug 2025 10:33:57 +0200 Subject: [PATCH] fix: add missing shebang to release_crates.sh script --- scripts/release_crates.sh | 2 ++ 1 file changed, 2 insertions(+) diff --git a/scripts/release_crates.sh b/scripts/release_crates.sh index 00282cc1c50..37f63f8b5a2 100755 --- a/scripts/release_crates.sh +++ b/scripts/release_crates.sh @@ -1,3 +1,5 @@ +#!/usr/bin/env bash + # An optional argument, '-s | --skip-first <#num_to_skip>', can be passed to skip the first #num_to_skip crates, otherwise SKIP_FIRST is set to 0. if [ "$1" = "-s" ] || [ "$1" = "--skip-first" ]; then if [ -z "$2" ]; then