Ver código fonte

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 mês atrás
pai
commit
1b4e424f71
3 arquivos alterados com 3 adições e 3 exclusões
  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