summaryrefslogtreecommitdiff
path: root/scripts/cpio
blob: fc671ca4880482da1736993104de3e885b656833 (plain)
1
2
3
4
5
6
7
8
9
#!/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 [ -x /usr/bin/cpio ];then
	/usr/bin/cpio --quiet "$@"
else
	/bin/cpio --quiet "$@"
fi