From 0d0afbfd7ca1bd5bd338a6e3b34bc0c64384cd0f Mon Sep 17 00:00:00 2001 From: Frost-Phoenix <67cyril6767@gmail.com> Date: Fri, 12 Jan 2024 17:35:59 +0100 Subject: [PATCH] remove unused scripts --- modules/home/scripts/scripts/commit copy.sh | 10 ---------- modules/home/scripts/scripts/commit.sh | 10 ---------- modules/home/scripts/scripts/push.sh | 11 ----------- 3 files changed, 31 deletions(-) delete mode 100755 modules/home/scripts/scripts/commit copy.sh delete mode 100755 modules/home/scripts/scripts/commit.sh delete mode 100755 modules/home/scripts/scripts/push.sh diff --git a/modules/home/scripts/scripts/commit copy.sh b/modules/home/scripts/scripts/commit copy.sh deleted file mode 100755 index 79fd33f..0000000 --- a/modules/home/scripts/scripts/commit copy.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash - -git_directory=$PWD/.git -if [[ -d $git_directory ]];then - git add . - read -p "Enter commit name: " commit_name - git commit -m "$commit_name" -else - echo "Git wasn't initialized here." -fi \ No newline at end of file diff --git a/modules/home/scripts/scripts/commit.sh b/modules/home/scripts/scripts/commit.sh deleted file mode 100755 index 79fd33f..0000000 --- a/modules/home/scripts/scripts/commit.sh +++ /dev/null @@ -1,10 +0,0 @@ -#!/usr/bin/env bash - -git_directory=$PWD/.git -if [[ -d $git_directory ]];then - git add . - read -p "Enter commit name: " commit_name - git commit -m "$commit_name" -else - echo "Git wasn't initialized here." -fi \ No newline at end of file diff --git a/modules/home/scripts/scripts/push.sh b/modules/home/scripts/scripts/push.sh deleted file mode 100755 index 1d3152a..0000000 --- a/modules/home/scripts/scripts/push.sh +++ /dev/null @@ -1,11 +0,0 @@ -#!/usr/bin/env bash - -git_directory=$PWD/.git -if [[ -d $git_directory ]];then - git add . - read -p "Enter commit name: " commit_name - git commit -m "$commit_name" - git push -else - echo "Git wasn't initialized here." -fi \ No newline at end of file