Skip to content
This repository was archived by the owner on May 28, 2025. It is now read-only.

Commit 1571571

Browse files
committed
also avoid rebuilding cached RTIM
1 parent 81d661f commit 1571571

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,8 +63,8 @@ jobs:
6363
- name: Install rustup-toolchain-install-master and xargo
6464
shell: bash
6565
run: |
66-
cargo install rustup-toolchain-install-master
67-
# Only install xargo if we don't have it cached
66+
# Only install tools if we don't have them cached
67+
if ! which rustup-toolchain-install-master; then cargo install rustup-toolchain-install-master; fi
6868
if ! which xargo; then cargo install xargo; fi
6969
7070
- name: Install "master" toolchain

0 commit comments

Comments
 (0)