summaryrefslogtreecommitdiff
path: root/scripts/find
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-01-25 22:45:10 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-01-25 22:45:10 +0100
commit430b04f9158473b8f584fe816aa9b7014eb0fe64 (patch)
treede5eec12f840873fbeee662ba87c7b4665005f62 /scripts/find
parent30949f5f17dc3b2376cd84b633d46c8ce3748987 (diff)
parentd23f73222f3fd1b7138939866740077725441aed (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts/find')
-rwxr-xr-xscripts/find14
1 files changed, 0 insertions, 14 deletions
diff --git a/scripts/find b/scripts/find
deleted file mode 100755
index 439ec0b3f..000000000
--- a/scripts/find
+++ /dev/null
@@ -1,14 +0,0 @@
-#!/usr/bin/env bash
-# This file is part of the OpenADK project. OpenADK is copyrighted
-# material, please see the LICENCE file in the top-level directory.
-
-find=$(which find)
-os=$(uname)
-case $os in
- Darwin)
- /opt/local/libexec/gnubin/find "$@"
- ;;
- *)
- /usr/bin/find "$@"
- ;;
-esac