blob: 5346345a572ab0d109670b6251d484d7489bbc26 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
|
#!/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 /archives archives
fi
rm -rf installed
rm -rf buildtrees
rm -rf packages/*
|