aboutsummaryrefslogtreecommitdiffstatshomepage
diff options
context:
space:
mode:
-rw-r--r--.github/actions/check-boost-bootstrapped/action.yml4
1 files changed, 3 insertions, 1 deletions
diff --git a/.github/actions/check-boost-bootstrapped/action.yml b/.github/actions/check-boost-bootstrapped/action.yml
index 73f44a9..cd901cc 100644
--- a/.github/actions/check-boost-bootstrapped/action.yml
+++ b/.github/actions/check-boost-bootstrapped/action.yml
@@ -8,7 +8,9 @@ runs:
echo 'bootstrap.log'
echo '----------------------------------------------------------------'
$path = Join-Path $env:BOOST_DIR 'bootstrap.log'
- cat $path
+ if (Test-Path $path -Type Leaf) {
+ cat $path
+ }
shell: pwsh
- run: |
echo ''