From da7def9f9d488213acfa37fae9a72cc3ac4e42f9 Mon Sep 17 00:00:00 2001 From: Abhiraj Roy <157954129+iconized@users.noreply.github.com> Date: Mon, 3 Jun 2024 01:29:40 +0530 Subject: [PATCH 1/2] =?UTF-8?q?=F0=9F=93=95docs(right-holders):=20add=20co?= =?UTF-8?q?ntributors=20and=20maintainers?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Abhiraj Roy <157954129+iconized@users.noreply.github.com> --- LICENSE | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/LICENSE b/LICENSE index 30785da3..e703e882 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2024 Snigdha OS +Copyright (c) 2024 Snigdha OS Eshan Roy(eshanized) Abhiraj Roy(iconized) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal From fe9fbc8592146e6e9c7fe2f855903a0204cccd71 Mon Sep 17 00:00:00 2001 From: Abhiraj Roy <157954129+iconized@users.noreply.github.com> Date: Mon, 3 Jun 2024 01:31:03 +0530 Subject: [PATCH 2/2] =?UTF-8?q?=E2=9A=A1perf(pull):=20pull=20first=20then?= =?UTF-8?q?=20push?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Abhiraj Roy <157954129+iconized@users.noreply.github.com> --- push.sh | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/push.sh b/push.sh index d3b5dced..8a6b2499 100755 --- a/push.sh +++ b/push.sh @@ -9,6 +9,10 @@ # to install commitizen. I have written this script only for *Arch Linux. # Function to check if Commitizen is installed +pull_from_github(){ + git pull +} + check_commitizen() { if ! pacman -Qq commitizen-go &> /dev/null; then echo "Commitizen is not installed. Please install it using 'yay -S commitizen-go'." >&2 @@ -25,6 +29,7 @@ push_to_github() { # Main Function main() { + pull_from_github check_commitizen push_to_github }