mirror of
https://github.com/ksyasuda/SubMiner.git
synced 2026-03-27 06:12:05 -07:00
14 lines
372 B
Bash
Executable File
14 lines
372 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
SCRIPT_DIR=$(cd "$(dirname "${BASH_SOURCE[0]}")" && pwd)
|
|
REPO_ROOT=$(cd "$SCRIPT_DIR/../../../.." && pwd)
|
|
TARGET="$REPO_ROOT/plugins/subminer-workflow/skills/subminer-change-verification/scripts/classify_subminer_diff.sh"
|
|
|
|
if [[ ! -x "$TARGET" ]]; then
|
|
echo "Missing canonical script: $TARGET" >&2
|
|
exit 1
|
|
fi
|
|
|
|
exec "$TARGET" "$@"
|