summaryrefslogtreecommitdiff
path: root/.local/bin/in-git-repo
diff options
context:
space:
mode:
authorAdam Stück <adam@adast.xyz>2023-05-04 15:52:13 +0200
committerAdam Stück <adam@adast.xyz>2023-05-04 15:52:13 +0200
commitac0422a9eb7ca9faae96566ca92a7e579d9a6437 (patch)
tree455ffac76f3cfdde083473b4ff60f334a16e8b04 /.local/bin/in-git-repo
parentaa3f5d6aabf002582bf77652aa0b5177a18a3bec (diff)
Drop unused scripts
Diffstat (limited to '.local/bin/in-git-repo')
-rwxr-xr-x.local/bin/in-git-repo9
1 files changed, 0 insertions, 9 deletions
diff --git a/.local/bin/in-git-repo b/.local/bin/in-git-repo
deleted file mode 100755
index 0372e32..0000000
--- a/.local/bin/in-git-repo
+++ /dev/null
@@ -1,9 +0,0 @@
-#!/bin/sh
-
-res=$(git rev-parse --is-inside-work-tree 2>/dev/null)
-
-if [ "$res" = true ]; then
- exit 0
-else
- exit 1
-fi