Skip to content
This repository has been archived by the owner on Jan 1, 2025. It is now read-only.

Commit

Permalink
feat(add): add firmware pkgs
Browse files Browse the repository at this point in the history
  • Loading branch information
eshanized committed May 10, 2024
1 parent 2d95ff6 commit fc58940
Show file tree
Hide file tree
Showing 7 changed files with 32 additions and 0 deletions.
32 changes: 32 additions & 0 deletions push.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,32 @@
#!/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
Binary file not shown.
Binary file not shown.
Binary file modified x86_64/snigdhaos-core.db
Binary file not shown.
Binary file modified x86_64/snigdhaos-core.db.sig
Binary file not shown.
Binary file modified x86_64/snigdhaos-core.files
Binary file not shown.
Binary file modified x86_64/snigdhaos-core.files.sig
Binary file not shown.

0 comments on commit fc58940

Please sign in to comment.