summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-01-25 22:28:28 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2014-01-25 22:28:28 +0100
commitd23f73222f3fd1b7138939866740077725441aed (patch)
tree6fa5cc118c97c453545a544bb4a043ee5df45d4c /scripts
parent57ce6694e6cc94a2f858c5a89a57188cbee71314 (diff)
remove find wrapper, not needed for maverick anymore
Diffstat (limited to 'scripts')
-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