GradienceCommunity/scripts/generate-preset-lists.sh

15 lines
303 B
Bash
Executable file

#!/usr/bin/bash
# Generate lists of presets
python3 scripts/update-official.py
python3 scripts/update-curated.py
# Push
git config --global user.name 'Gradience Team'
git config --global user.email 'AdwCustomizerTeam@proton.me'
git add presets.json
git commit -m "ci: Generate preset list"
git push