System/scripts/gitea/update-repo.sh

21 lines
405 B
Bash
Raw Normal View History

#!/usr/bin/env bash
2023-05-15 07:52:58 -04:00
set -exou pipefail
TEMP_DIR=$(mktemp -d "repo-updater.XXXX" -p $XDG_RUNTIME_DIR)
pushd $TEMP_DIR
2023-05-15 22:36:03 -04:00
if git clone "$1" repo && pushd repo && git switch $2 && ./update.sh; then
git add -A
if git commit -S -m "Update flake/dependencies"; then
git push -u origin $2
else
echo "No changes made"
fi
else
2023-05-15 22:36:03 -04:00
echo "Update failed"
fi
popd
popd
rm -rf $TEMP_DIR