mirror of
https://github.com/microsoft/vcpkg.git
synced 2024-12-29 03:34:26 +08:00
9 lines
270 B
Bash
Executable File
9 lines
270 B
Bash
Executable File
#!/bin/bash
|
|
# Copyright (c) Microsoft Corporation.
|
|
# SPDX-License-Identifier: MIT
|
|
|
|
# Sets up the environment for MacOS runs of vcpkg CI
|
|
|
|
#delete downloaded files that have not been used in 7 days
|
|
find ~/Data/downloads/ -maxdepth 1 -type f ! -atime 7 -exec rm -f {} \;
|