summaryrefslogtreecommitdiff
path: root/scripts/install
blob: 0fe925d0fd4d3b0d587e12ab756b52d62952c725 (plain)
1
2
3
4
5
6
7
8
9
10
#!/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 ginstall 2>/dev/null)" ];then
	/usr/bin/install "$@"
else
	ginstall "$@"
fi