Use /usr/bin/env bash instead of /bin/bash in common scripts (#9494)

Signed-off-by: Nikolay Marchuk <nikolay.marchuk@hardcoreeng.com>
This commit is contained in:
Nikolay Marchuk
2025-07-08 13:57:14 +07:00
committed by GitHub
parent 5030618286
commit 52d718df26
3 changed files with 3 additions and 3 deletions
+1 -1
View File
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
echo $@
BASE_BRANCH=${1:-develop}
while [[ "$#" -gt 0 ]]; do
+1 -1
View File
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
MONGO_URL="mongodb://127.0.0.1:27017"
DAYS=365
dump='dump'
+1 -1
View File
@@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Get the absolute path for the base directory
BASE_DIR=$(pwd)