From 33c3619d919c5e910fc9242e8e9c855293126cc0 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9ril=20Pilon?= Date: Wed, 12 Oct 2022 11:02:47 +0100 Subject: [PATCH] fix: enable push to aur --- scripts/push-to-aur.bash | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/push-to-aur.bash b/scripts/push-to-aur.bash index 418a247..acb40a8 100755 --- a/scripts/push-to-aur.bash +++ b/scripts/push-to-aur.bash @@ -36,7 +36,7 @@ su "$USR" -c "makepkg --printsrcinfo" >.SRCINFO chown -R "$USR":"$USR" .SRCINFO # Push changes -# mygit config --global --add safe.directory "$USR_HOME"/"$AUR_PKG" -# mygit add .SRCINFO PKGBUILD -# mygit commit -m "Bump to $PKG_VERSION" -# mygit push origin master +mygit config --global --add safe.directory "$USR_HOME"/"$AUR_PKG" +mygit add .SRCINFO PKGBUILD +mygit commit -m "Bump to $PKG_VERSION" +mygit push origin master