Add root-level wrapper scripts for user-facing CLI/GUI launchers
This commit is contained in:
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
ROOT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
PAYLOAD_DIR="$ROOT_DIR/build/payload"
|
||||
TARGET="$PAYLOAD_DIR/Hiperiso.sh"
|
||||
if [ ! -x "$TARGET" ]; then
|
||||
printf '%s\n' "Missing $TARGET. Build first with: ./scripts/build_all.sh" >&2
|
||||
exit 1
|
||||
fi
|
||||
exec "$TARGET" "$@"
|
||||
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
ROOT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
PAYLOAD_DIR="$ROOT_DIR/build/payload"
|
||||
TARGET="$PAYLOAD_DIR/Hiperiso2Disk.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" "$@"
|
||||
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
ROOT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
PAYLOAD_DIR="$ROOT_DIR/build/payload"
|
||||
TARGET="$PAYLOAD_DIR/HiperisoGtk.sh"
|
||||
if [ ! -x "$TARGET" ]; then
|
||||
printf '%s\n' "Missing $TARGET. Build first with: ./scripts/build_all.sh" >&2
|
||||
exit 1
|
||||
fi
|
||||
exec "$TARGET" "$@"
|
||||
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
ROOT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
PAYLOAD_DIR="$ROOT_DIR/build/payload"
|
||||
TARGET="$PAYLOAD_DIR/HiperisoPlugson.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" "$@"
|
||||
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
ROOT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
PAYLOAD_DIR="$ROOT_DIR/build/payload"
|
||||
TARGET="$PAYLOAD_DIR/HiperisoQt.sh"
|
||||
if [ ! -x "$TARGET" ]; then
|
||||
printf '%s\n' "Missing $TARGET. Build first with: ./scripts/build_all.sh" >&2
|
||||
exit 1
|
||||
fi
|
||||
exec "$TARGET" "$@"
|
||||
Executable
+10
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
ROOT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
PAYLOAD_DIR="$ROOT_DIR/build/payload"
|
||||
TARGET="$PAYLOAD_DIR/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" "$@"
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
ROOT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
TARGET="$ROOT_DIR/build/payload/Hiperiso.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" "$@"
|
||||
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
ROOT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
PAYLOAD_DIR="$ROOT_DIR/build/payload"
|
||||
TARGET="$PAYLOAD_DIR/hisocli"
|
||||
if [ ! -x "$TARGET" ]; then
|
||||
printf '%s\n' "Missing $TARGET. Build first with: ./scripts/build_all.sh" >&2
|
||||
exit 1
|
||||
fi
|
||||
exec "$TARGET" "$@"
|
||||
@@ -0,0 +1,10 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
ROOT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
PAYLOAD_DIR="$ROOT_DIR/build/payload"
|
||||
TARGET="$PAYLOAD_DIR/hisolnk"
|
||||
if [ ! -x "$TARGET" ]; then
|
||||
printf '%s\n' "Missing $TARGET. Build first with: ./scripts/build_all.sh" >&2
|
||||
exit 1
|
||||
fi
|
||||
exec "$TARGET" "$@"
|
||||
Executable
+9
@@ -0,0 +1,9 @@
|
||||
#!/bin/sh
|
||||
set -e
|
||||
ROOT_DIR=$(CDPATH= cd -- "$(dirname -- "$0")" && pwd)
|
||||
TARGET="$ROOT_DIR/build/payload/HiperisoPlugson.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" "$@"
|
||||
@@ -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" "$@"
|
||||
Reference in New Issue
Block a user