From 84ae0cdf8939c75b442abc15964a5f34894000d4 Mon Sep 17 00:00:00 2001 From: Patrick Totzke Date: Tue, 6 May 2025 10:10:01 +0100 Subject: [PATCH] fix shebang Invoking bash or zsh via "/bin/sh" will cause these shells to be incompatible with some modern syntax extensions, including tests via the `[[ ... ]]` operator. This commit fixes corresponding errors (for me). --- bin/run | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/run b/bin/run index 3c86949..bf4a583 100755 --- a/bin/run +++ b/bin/run @@ -1,4 +1,4 @@ -#!/bin/sh +#!/bin/bash # PRISM directory to link to if [ "$PRISM_DIR" = "" ]; then