9 lines
93 B
Bash
Executable file
9 lines
93 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -e
|
|
set +x
|
|
|
|
trap "cd $(pwd -P)" EXIT
|
|
cd "$(dirname $0)"
|
|
|
|
rm -rf ./x64
|