From 0e03a0a6d56cc6891cbd03fe61188ebb2b8bcfa4 Mon Sep 17 00:00:00 2001 From: Miro Stauder Date: Thu, 4 Apr 2024 09:30:19 -0400 Subject: [PATCH] fix bash scripts shebang --- deps/libssl/verify-bio_st-match.sh | 2 +- etc/init.d/proxysql | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/deps/libssl/verify-bio_st-match.sh b/deps/libssl/verify-bio_st-match.sh index 666932c55..137f6cfee 100755 --- a/deps/libssl/verify-bio_st-match.sh +++ b/deps/libssl/verify-bio_st-match.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # make sure we have correct cwd pushd $(dirname $0) &>/dev/null diff --git a/etc/init.d/proxysql b/etc/init.d/proxysql index a823cbd1e..8581f62ff 100755 --- a/etc/init.d/proxysql +++ b/etc/init.d/proxysql @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # # chkconfig: 345 99 01 # description: High Performance and Advanced Proxy for MySQL and forks. \