replaced bash shebang with more portable one

This commit is contained in:
Leyla Becker 2025-08-16 11:12:06 -05:00 committed by GitHub
parent 85cad4ffbe
commit c0795e234a
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Get the absolute path to this script's folder.
if echo "$0" | awk '{exit(!/^\//);}'; then

View file

@ -1,4 +1,4 @@
#!/bin/bash
#!/usr/bin/env bash
# Get the script's name.
me=$(basename "$0");