From 745f57f14544f8d4cbf7bae42ed8bf29c98b102a Mon Sep 17 00:00:00 2001 From: retrozinndev Date: Wed, 21 May 2025 15:00:42 -0300 Subject: [PATCH] :boom: fix(update-repo): actually fix wrong usage of regEx --- update-repo.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/update-repo.sh b/update-repo.sh index 093ef74..8c1c700 100644 --- a/update-repo.sh +++ b/update-repo.sh @@ -81,7 +81,7 @@ Update_remote() { echo -n "Done! Do you want to push? If not, you'll go back to file selection [y/n] " read push_changes - if [[ $push_changes =~ ^y(es) ]]; then + if [[ $push_changes =~ "y" ]]; then git push echo "Done pushing!!" else