From e60dfca9fc4cb0e9a550e80d734f66f5e1d6b919 Mon Sep 17 00:00:00 2001 From: David Date: Mon, 12 Jun 2023 01:44:18 +0200 Subject: [PATCH] Fix run.sh shebang (#4561) Co-authored-by: Nicholas Tindle Co-authored-by: Reinier van der Leer --- run.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/run.sh b/run.sh index 62463555..287499f8 100755 --- a/run.sh +++ b/run.sh @@ -1,4 +1,4 @@ -#!/bin/bash +#!/usr/bin/env bash function find_python_command() { if command -v python &> /dev/null @@ -26,4 +26,4 @@ if $PYTHON_CMD -c "import sys; sys.exit(sys.version_info < (3, 10))"; then read -p "Press any key to continue..." else echo "Python 3.10 or higher is required to run Auto GPT." -fi \ No newline at end of file +fi