summaryrefslogtreecommitdiff
path: root/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'scripts')
-rwxr-xr-xscripts/install10
1 files changed, 10 insertions, 0 deletions
diff --git a/scripts/install b/scripts/install
new file mode 100755
index 000000000..0fe925d0f
--- /dev/null
+++ b/scripts/install
@@ -0,0 +1,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
+