10 lines
105 B
Bash
Executable file
10 lines
105 B
Bash
Executable file
#!/bin/bash
|
|
set -e
|
|
set +x
|
|
|
|
trap "cd $(pwd -P)" EXIT
|
|
cd "$(dirname $0)"
|
|
cd "checkout"
|
|
|
|
rm -rf WebKitBuild
|