Files
IQ.Pilot/iqpilot/selfdrive/iqmodeld/iqmodeld
2026-08-22 23:42:41 -05:00

17 lines
317 B
Bash
Executable File

#!/usr/bin/env bash
# Copyright © IQ.Lvbs, apart of Project Teal Lvbs, All Rights Reserved, licensed under https://konn3kt.com/tos/
set -euo pipefail
script_home() {
cd "$(dirname "${BASH_SOURCE[0]}")" >/dev/null && pwd
}
main() {
local here
here="$(script_home)"
exec "$here/daemon.py" "$@"
}
main "$@"