From 7f1e98c7e9b18a0e2f278defda33b95b0448e03d Mon Sep 17 00:00:00 2001 From: Brian Rak Date: Mon, 15 Dec 2025 13:01:46 -0500 Subject: [PATCH] Replace /bin/sh calls with /bin/bash As we upgrade the builders, /bin/sh is now dash which does not support all the features bash does. Switch to explictly using bash to ensure things continue to work --- .buildkite/shared-pipeline-vars | 2 +- gradlew | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.buildkite/shared-pipeline-vars b/.buildkite/shared-pipeline-vars index 08d9e22a5a23..ccc16335c833 100644 --- a/.buildkite/shared-pipeline-vars +++ b/.buildkite/shared-pipeline-vars @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # This file is `source`'d before calling `buildkite-agent pipeline upload`, and can be used # to set up some variables that will be interpolated in the `.yml` pipeline before uploading it. diff --git a/gradlew b/gradlew index f3b75f3b0d4f..6156a40a6a84 100755 --- a/gradlew +++ b/gradlew @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # # Copyright © 2015-2021 the original authors.