aboutsummaryrefslogtreecommitdiff
path: root/lib/subcommands/patch.bash
diff options
context:
space:
mode:
Diffstat (limited to 'lib/subcommands/patch.bash')
-rw-r--r--lib/subcommands/patch.bash15
1 files changed, 0 insertions, 15 deletions
diff --git a/lib/subcommands/patch.bash b/lib/subcommands/patch.bash
deleted file mode 100644
index 72350ef..0000000
--- a/lib/subcommands/patch.bash
+++ /dev/null
@@ -1,15 +0,0 @@
-#!/usr/bin/env bash
-
-# SPDX-FileCopyrightText: 2022 Patrick Spek <p.spek@tyil.nl>
-#
-# SPDX-License-Identifier: AGPL-3.0-or-later
-
-subcommand()
-{
- chgdir "$BASHTARD_ETCDIR"
- git add . \
- && git diff --cached \
- && git reset \
- && git restore . \
- && git clean -fd
-}