1
0
Fork 0

🐛 fix(renovate): remove unnecessary chmod command

- remove redundant chmod +x command for Python script
- Python scripts don't require execute permissions to run with python3 interpreter
This commit is contained in:
pooneyy 2025-10-10 20:38:21 +08:00
parent 6abd8b9b13
commit 889b00edda
No known key found for this signature in database
1 changed files with 0 additions and 1 deletions

View File

@ -83,7 +83,6 @@ jobs:
if [[ $file == *"docker-compose.yml"* ]]; then
app_name=$(echo $file | cut -d'/' -f 2)
old_version=$(echo $file | cut -d'/' -f 3)
chmod +x .github/workflows/renovate-app-version.py
python3 .github/workflows/renovate-app-version.py $app_name $old_version
fi
done