Skip to content

Commit

Permalink
fix(self_update): show --version param
Browse files Browse the repository at this point in the history
  • Loading branch information
jdx committed May 2, 2024
1 parent e5368f7 commit 4a60a09
Showing 1 changed file with 7 additions and 1 deletion.
8 changes: 7 additions & 1 deletion .mise/tasks/test/coverage
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,13 @@ if [[ "${TEST_TRANCHE:-}" == 0 ]]; then
mise implode
elif [[ "${TEST_TRANCHE:-}" == 1 ]]; then
echo "::group::Self update"
mise self-update -fy
y=$(date +%Y)
m=$(($(date +%m) - 1))
if [[ $m -eq 0 ]]; then
m=12
y=$((y - 1))
fi
mise self-update -fy --version "$y.$m.0"
fi
echo "::group::Render lcov report"
cargo llvm-cov report --lcov --output-path lcov.info

0 comments on commit 4a60a09

Please sign in to comment.