mirror of
https://github.com/openclaw/openclaw.git
synced 2026-06-23 16:28:11 +00:00
10 lines
289 B
Bash
Executable File
10 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 "$@"
|