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