docker fix

This commit is contained in:
2025-09-18 16:47:07 +09:00
parent 29d6255f22
commit fdd0580554
8 changed files with 546 additions and 1 deletions

15
bin/fix_line_endings.sh Normal file
View File

@@ -0,0 +1,15 @@
#!/bin/bash
# fix_line_endings.sh - Script to fix line endings in shell scripts
echo "🔧 Fixing line endings in shell scripts..."
# Fix shell scripts
for file in $(find . -name "*.sh"); do
echo "📄 Processing $file..."
tr -d '\r' < "$file" > "$file.fixed"
mv "$file.fixed" "$file"
chmod +x "$file"
echo "✅ Fixed $file"
done
echo "🚀 All shell scripts fixed!"