@eshanized updated the repository 🎉 !!!

This commit is contained in:
eshanized
2024-04-16 18:20:45 +05:30
parent b53eae4494
commit 4a54a9fa76
2 changed files with 14 additions and 1 deletions

View File

@@ -25,4 +25,4 @@ MESSAGE="⏳ @eshanized updated the repository 🎉 !!!"
# Git Action
git add .
git commit -m "$MESSAGE"
git push origin "$BRANCH"
# git push origin "$BRANCH"

View File

@@ -9,3 +9,16 @@ usage() {
echo ' -h This help'
exit 1
}
opts='s:h'
while getopts "${opts}" arg; do
case "${arg}" in
s) EXEC_TERMINAL="$OPTARG" ;;
h | ?) usage 0 ;;
*)
echo "Invalid Argument '${arg}'!"
usage 1
;;
esac
done