From 842ccef22f9e57f2444b26a9c0ee3c022c97aa20 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20Fra=C3=9F?= Date: Mon, 29 Sep 2025 21:38:44 +0200 Subject: [PATCH] [add] tools:install --- tools/install | 16 ++++++++++++++++ 1 file changed, 16 insertions(+) create mode 100755 tools/install diff --git a/tools/install b/tools/install new file mode 100755 index 0000000..41cf6ad --- /dev/null +++ b/tools/install @@ -0,0 +1,16 @@ +#!/usr/bin/env sh + +## consts + +dir_build="build" + + +## args + +if [ $# -ge 1 ] ; then dir_target=$1 ; else dir_target=/usr/local/bin ; fi + + +## exec + +cp ${dir_build}/inwx ${dir_target}/inwx +