🐛 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:
parent
6abd8b9b13
commit
889b00edda
|
|
@ -83,7 +83,6 @@ jobs:
|
||||||
if [[ $file == *"docker-compose.yml"* ]]; then
|
if [[ $file == *"docker-compose.yml"* ]]; then
|
||||||
app_name=$(echo $file | cut -d'/' -f 2)
|
app_name=$(echo $file | cut -d'/' -f 2)
|
||||||
old_version=$(echo $file | cut -d'/' -f 3)
|
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
|
python3 .github/workflows/renovate-app-version.py $app_name $old_version
|
||||||
fi
|
fi
|
||||||
done
|
done
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue