From 30157488f25c71ee3bb061b8c15ed6f6c9bf3b4e Mon Sep 17 00:00:00 2001 From: Abhiraj Roy <157954129+iconized@users.noreply.github.com> Date: Wed, 29 May 2024 23:01:43 +0530 Subject: [PATCH] refactor(del): remove my script --- iconized.sh | 36 ------------------------------------ 1 file changed, 36 deletions(-) delete mode 100755 iconized.sh diff --git a/iconized.sh b/iconized.sh deleted file mode 100755 index c14e7b3d..00000000 --- a/iconized.sh +++ /dev/null @@ -1,36 +0,0 @@ -<<<<<<< HEAD -#!/bin/bash -======= -#!/bin/bash - -# Author : Eshan Roy -# URI : https://eshanized.github.io - -# NOTE: If you are on Snigdha OS, -# you can install commitizen-go with `sudo pacman -S commitizen-go` -# or `s commitizen-go`. Else you need to install `yay` or `yay-bin` -# to install commitizen. I have written this script only for *Arch Linux. - -# Function to check if Commitizen is installed -check_commitizen() { - if ! pacman -Qq commitizen-go &> /dev/null; then - echo "Commitizen is not installed. Please install it using 'yay -S commitizen-go'." >&2 - exit 1 - fi -} - -# Function to stage, commit, and push changes -push_to_github() { - git add . - git cz - git push origin master -} - -# Main Function -main() { - check_commitizen - push_to_github -} - -main ->>>>>>> 122db96bc4e6a7242cb3d37c53eef560cb6aba8f