From a302589055457b8ad297bd3a7cfef2f68752b30f Mon Sep 17 00:00:00 2001 From: YoungSoo Shin Date: Mon, 23 Dec 2024 16:35:54 +0900 Subject: [PATCH] Add install script --- install | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100755 install diff --git a/install b/install new file mode 100755 index 0000000..cc31161 --- /dev/null +++ b/install @@ -0,0 +1,10 @@ +#!/bin/bash + +if [ "$EUID" != 0 ]; then + sudo "$0" "$@" + exit $? +fi + +cp -r ./overlay/* / +chmod +x /usr/bin/calibration-helper +chmod +x /usr/bin/launch-calibration \ No newline at end of file