Преглед на файлове

Fix script shebangs for better portability

Use #!/usr/bin/env bash instead of #!/bin/bash for better
compatibility across different systems.

🤖 Generated with [Claude Code](https://claude.ai/code)

Co-Authored-By: Claude <noreply@anthropic.com>
Bernardo Magri преди 1 месец
родител
ревизия
1b4e424f71
променени са 3 файла, в които са добавени 3 реда и са изтрити 3 реда
  1. 1 1
      scripts/build.sh
  2. 1 1
      scripts/clean.sh
  3. 1 1
      scripts/test.sh

+ 1 - 1
scripts/build.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 # Build script for Lumacs
 
 set -e  # Exit on error

+ 1 - 1
scripts/clean.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 # Clean script for Lumacs - removes build artifacts and temporary files
 
 echo "Cleaning Lumacs build artifacts..."

+ 1 - 1
scripts/test.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 # Test script for Lumacs
 
 set -e