mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
ff75073cc8
References #5067
13 lines
171 B
Bash
Executable File
13 lines
171 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set +x
|
|
|
|
trap "cd $(pwd -P)" EXIT
|
|
cd "$(dirname $0)"
|
|
|
|
rm -rf output
|
|
if [[ ! -z "${CR_CHECKOUT_PATH}" ]]; then
|
|
rm -rf "${CR_CHECKOUT_PATH}/src/out"
|
|
fi
|
|
|