From eaa5b217c8301459e6b63f68b0166003f1dabc47 Mon Sep 17 00:00:00 2001 From: Llewellyn van der Merwe Date: Sat, 1 Jun 2024 15:08:38 +0200 Subject: [PATCH] Update shebang for shell compatibility #6 Changed the shebang in the octojoom script. This change improves portability by allowing the script to run in environments where /bin/bash may not be available. --- src/octojoom | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/octojoom b/src/octojoom index 834fa60..3a0dcce 100755 --- a/src/octojoom +++ b/src/octojoom @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # The most recent program version. _VERSION="3.6.1"