From c0795e234ac3ad568e46a65bb44c802e08c3d78f Mon Sep 17 00:00:00 2001 From: Leyla Becker Date: Sat, 16 Aug 2025 11:12:06 -0500 Subject: [PATCH] replaced bash shebang with more portable one --- skel_unix/modman-cli.sh | 2 +- skel_unix/modman.command | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/skel_unix/modman-cli.sh b/skel_unix/modman-cli.sh index 00104c8..9c7124c 100644 --- a/skel_unix/modman-cli.sh +++ b/skel_unix/modman-cli.sh @@ -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 diff --git a/skel_unix/modman.command b/skel_unix/modman.command index 1381d8f..3b63900 100644 --- a/skel_unix/modman.command +++ b/skel_unix/modman.command @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Get the script's name. me=$(basename "$0");