1
0
mirror of https://github.com/pooneyy/1Panel-Appstore.git synced 2026-03-17 23:51:03 +08:00

🐛 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

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