Skip to content

Commit 48f0083

Browse files
committed
fix: errors introduced by llm earlier
1 parent 44b0b46 commit 48f0083

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

mac_create_and_start_containers.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
#!/bin/bash
1+
#!/opt/homebrew/bin/bash
22

33
# Check Bash version (adjust version as needed)
44
if [[ ! $(bash --version | head -n1 | awk '{print $3}' | cut -d'.' -f1-2) =~ ^5\. ]]; then

mac_start_hackingbuddygpt_against_a_container.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,8 @@
11
#!/bin/bash
22

33
# Check Bash version (adjust version as needed)
4-
if [[ ! $(bash --version | head -n1 | awk '{print $3}' | cut -d'.' -f1-2) =~ ^5\. ]]; then
5-
echo "Error: Requires Bash version 5 or higher." >&2
4+
if [[ ! $(bash --version | head -n1 | awk '{print $3}' | cut -d'.' -f1-2) =~ ^3\. ]]; then
5+
echo "Error: Requires Bash version 3 or higher." >&2
66
exit 1
77
fi
88

0 commit comments

Comments
 (0)