mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-15 14:11:50 +03:00
b1b4d7b819
This way bash won't expand and post-process variable values in any way. The changes are driven with [`shellcheck`](https://github.com/koalaman/shellcheck)
13 lines
173 B
Bash
Executable File
13 lines
173 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
|
|
|