16 lines
412 B
Bash
16 lines
412 B
Bash
#!/bin/bash
|
|
# Setup script permissions for AutoQA scripts
|
|
|
|
echo "Setting up permissions for AutoQA scripts..."
|
|
|
|
# Get the directory where this script is located
|
|
SCRIPT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)"
|
|
|
|
# Make all shell scripts executable
|
|
chmod +x "$SCRIPT_DIR"/*.sh
|
|
|
|
echo "[SUCCESS] All shell scripts are now executable:"
|
|
ls -la "$SCRIPT_DIR"/*.sh
|
|
|
|
echo "[SUCCESS] Permission setup completed"
|