summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-12-02 15:21:02 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-12-02 15:21:02 +0100
commit4ef902cae4455605c6d439abf6320bce2d625212 (patch)
tree30577b7bbc33d368a300762cd57c6c3470400608 /scripts
parent1a0bc22e751dc1a91073e47b61a4135cec549633 (diff)
wrapper script not needed anymore
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/tar17
1 files changed, 0 insertions, 17 deletions
diff --git a/scripts/tar b/scripts/tar
deleted file mode 100755
index 6f63d74c1..000000000
--- a/scripts/tar
+++ /dev/null
@@ -1,17 +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.
-
-if [ -z "$(which gtar 2>/dev/null)" ];then
- if [ -z "$(which gnutar 2>/dev/null)" ];then
- if [ -x /usr/bin/tar ];then
- /usr/bin/tar "$@"
- else
- /bin/tar "$@"
- fi
- else
- gnutar "$@"
- fi
-else
- gtar "$@"
-fi