💥 fix(update-repo): actually fix wrong usage of regEx

This commit is contained in:
retrozinndev
2025-05-21 15:00:42 -03:00
parent cf41b12ae1
commit 745f57f145
+1 -1
View File
@@ -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