Explorar o código

wrapper script not needed anymore

Waldemar Brodkorb %!s(int64=16) %!d(string=hai) anos
pai
achega
4ef902cae4
Modificáronse 1 ficheiros con 0 adicións e 17 borrados
  1. 0 17
      scripts/tar

+ 0 - 17
scripts/tar

@@ -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