diff options
author | makefu <github@syntax-fehler.de> | 2012-12-20 10:45:52 +0700 |
---|---|---|
committer | makefu <github@syntax-fehler.de> | 2012-12-20 10:45:52 +0700 |
commit | 384552a83d12b1f14e2d35f2267aabbf9240eac6 (patch) | |
tree | 86cafa2af20104361b19ba51ef578a6de4938afe /cobra/index.sh | |
parent | 927fec296c45f72a95014118a9d7989f19504a13 (diff) |
//cobra -> //sandbox/cobra
Diffstat (limited to 'cobra/index.sh')
-rwxr-xr-x | cobra/index.sh | 16 |
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 |