This repository has been archived on 2025-03-02. You can view files and clone it, but cannot push or open issues or pull requests.
GalacticFactory-Legacy/scripts/hooks/post-commit

12 lines
266 B
Text
Raw Normal View History

#!/bin/sh
2024-03-24 04:34:43 -04:00
echo "post-commit: Refreshing packwiz"
cd src
packwiz refresh
2024-03-24 04:34:43 -04:00
echo "post-commit: Adding changes to git"
git add .
2024-03-24 04:34:43 -04:00
echo "post-commit: Amending commit with refreshed files"
git commit --amend --gpg-sign --no-edit --no-verify
2024-03-24 04:34:43 -04:00
echo "post-commit: Done"
2024-03-24 04:24:10 -04:00
exit 0