From 9bdb58d2684c9cb9a1729238ae09f05f631dd26f Mon Sep 17 00:00:00 2001 From: Bas Nijholt Date: Tue, 18 Nov 2025 15:49:34 -0800 Subject: [PATCH] Use `#!/usr/bin/env bash` in `start-gpu.sh` for better compatibility For example /bin/bash doesn't exist on NixOS and this works acros distros. --- start-gpu.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/start-gpu.sh b/start-gpu.sh index a3a2e687..3d37512f 100755 --- a/start-gpu.sh +++ b/start-gpu.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash # Get project root directory PROJECT_ROOT=$(pwd)