summaryrefslogtreecommitdiff
path: root/scripts/tar
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2010-12-05 10:49:13 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2010-12-05 10:49:13 +0100
commit26d79f5e76b17c978ee4b21e17464ea9ea2e0203 (patch)
treedd856982dccb6e46240112775ade21247d627c6a /scripts/tar
parent9037fba3edd4bffd403b342a1487d9bf59f25830 (diff)
parent4c93c2e27f98e0c00a101bc8b7df20b12d82f8b9 (diff)
Merge branch 'master' of git+ssh://openadk.org/git/openadk
Diffstat (limited to 'scripts/tar')
-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