mirror of
https://github.com/uroni/hs5.git
synced 2025-10-26 11:17:18 +00:00
13 lines
204 B
Bash
Executable File
13 lines
204 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -e
|
|
|
|
|
|
CDIR="$(cd -P -- "$(dirname -- "${BASH_SOURCE[0]}")" && pwd -P)"
|
|
cd "$CDIR"
|
|
|
|
if [ -e ./vcpkg/buildtrees ]
|
|
then
|
|
echo "Cleaning vcpkg buildtrees"
|
|
rm -Rf ./vcpkg/buildtrees/*
|
|
fi |