scripts : make the shell scripts cross-platform (#14341)

This commit is contained in:
Vedran Miletić
2025-06-30 10:17:18 +02:00
committed by GitHub
parent caf5681fcb
commit e9b6350e61
46 changed files with 46 additions and 46 deletions

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
API_URL="${API_URL:-http://127.0.0.1:8080}"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
API_URL="${API_URL:-http://127.0.0.1:8080}"

View File

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# make sure we are in the right directory
SCRIPT_DIR=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )