blob: 1cbdd33265db402e265b651e7f4aa92db59c212d (
plain)
1
2
3
4
5
6
7
8
|
#!/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
|