about summary refs log tree commit diff
path: root/src/ci/scripts/free-disk-space.sh
blob: 062ad801cd8d200f4a6b2b464d17fb178cec5c4a (plain)
1
2
3
4
5
6
7
8
9
10
#!/bin/bash
set -euo pipefail

script_dir=$(dirname "$0")

if [[ "${RUNNER_OS:-}" == "Windows" ]]; then
    pwsh $script_dir/free-disk-space-windows.ps1
else
    $script_dir/free-disk-space-linux.sh
fi