Add root-level wrapper scripts for user-facing CLI/GUI launchers

This commit is contained in:
2026-06-30 14:31:16 +03:00
parent 27401b2cd2
commit 522bba45c7
11 changed files with 107 additions and 0 deletions
Executable
+9
View File
@@ -0,0 +1,9 @@
#!/bin/sh
set -e
ROOT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
TARGET="$ROOT_DIR/build/payload/HiperisoWeb.sh"
if [ ! -x "$TARGET" ] && [ ! -f "$TARGET" ]; then
printf '%s\n' "Missing $TARGET. Build first with: ./scripts/build_all.sh" >&2
exit 1
fi
exec "$TARGET" "$@"