mirror of
https://github.com/cemu-project/vcpkg.git
synced 2025-02-26 12:33:33 +01:00
16 lines
336 B
Bash
16 lines
336 B
Bash
![]() |
#!/bin/bash
|
||
|
# Copyright (c) Microsoft Corporation.
|
||
|
# SPDX-License-Identifier: MIT
|
||
|
|
||
|
# Cleans up the environment to prevent contamination across builds.
|
||
|
if [ ! -d "archives" ]; then
|
||
|
ln -s /ci/archives archives
|
||
|
fi
|
||
|
if [ ! -d "installed" ]; then
|
||
|
ln -s /ci/installed installed
|
||
|
fi
|
||
|
|
||
|
rm -rf installed/*
|
||
|
rm -rf buildtrees
|
||
|
rm -rf packages
|