* feat: add autoqa * chore: add auto start computer_server * chore: add ci autoqa windows * chore: add ci support for both windows and linux * chore: add ci support for macos * chore: refactor auto qa * chore: refactor autoqa workflow * chore: fix upload turn
16 lines
400 B
Bash
16 lines
400 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 "✅ All shell scripts are now executable:"
|
|
ls -la "$SCRIPT_DIR"/*.sh
|
|
|
|
echo "✅ Permission setup completed"
|