mirror of
https://github.com/openclaw/openclaw.git
synced 2026-08-24 00:11:20 +00:00
9 lines
289 B
Bash
Executable file
9 lines
289 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -euo pipefail
|
|
|
|
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/../.." && pwd)"
|
|
cd "$ROOT_DIR"
|
|
if command -v pnpm >/dev/null 2>&1; then
|
|
exec pnpm exec tsx scripts/e2e/parallels/linux-smoke.ts "$@"
|
|
fi
|
|
exec node --import tsx scripts/e2e/parallels/linux-smoke.ts "$@"
|