mirror of
https://github.com/microsoft/playwright.git
synced 2024-12-14 21:53:35 +03:00
14 lines
181 B
Bash
Executable File
14 lines
181 B
Bash
Executable File
#!/bin/bash
|
|
set -e
|
|
set +x
|
|
|
|
trap "cd $(pwd -P)" EXIT
|
|
cd "$(dirname $0)"
|
|
cd "checkout"
|
|
|
|
OBJ_FOLDER=$(ls -1 | grep obj- || true)
|
|
if [[ -d $OBJ_FOLDER ]]; then
|
|
rm -rf $OBJ_FOLDER
|
|
fi
|
|
|