summaryrefslogtreecommitdiffstats
path: root/cobra/index.sh
diff options
context:
space:
mode:
Diffstat (limited to 'cobra/index.sh')
-rwxr-xr-xcobra/index.sh16
1 files changed, 0 insertions, 16 deletions
diff --git a/cobra/index.sh b/cobra/index.sh
deleted file mode 100755
index 1118a823..00000000
--- a/cobra/index.sh
+++ /dev/null
@@ -1,16 +0,0 @@
-#! /bin/sh
-set -euf
-trap "echo 'You are made of stupid!' >&2; exit 23" EXIT
-
-COBRA_PATH="${COBRA_PATH-$PWD}"
-
-## main
-for target; do
- for path in $COBRA_PATH; do
- if test -d "$path/$target"; then
- if index="$path/$target/index.sh" && test -f "$index"; then
- exec /bin/sh "$index"
- fi
- fi
- done
-done