Эх сурвалжийг харах

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 сар өмнө
parent
commit
1b4e424f71

+ 1 - 1
scripts/build.sh

@@ -1,4 +1,4 @@
-#!/bin/bash
+#!/usr/bin/env bash
 # Build script for Lumacs
 # Build script for Lumacs
 
 
 set -e  # Exit on error
 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
 # Clean script for Lumacs - removes build artifacts and temporary files
 
 
 echo "Cleaning Lumacs build artifacts..."
 echo "Cleaning Lumacs build artifacts..."

+ 1 - 1
scripts/test.sh

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