mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
7 lines
216 B
Bash
Executable File
7 lines
216 B
Bash
Executable File
#!/bin/sh
|
|
SCRIPT_PATH="$(cd "$(dirname "$0")" ; pwd -P)"
|
|
if [ -z "$PLAYWRIGHT_NODEJS_PATH" ]; then
|
|
PLAYWRIGHT_NODEJS_PATH="$SCRIPT_PATH/node"
|
|
fi
|
|
"$PLAYWRIGHT_NODEJS_PATH" "$SCRIPT_PATH/package/lib/cli/cli.js" "$@"
|