Skip to content

Commit 8798210

Browse files
committed
fix subsequent travis runs
1 parent ad0b09e commit 8798210

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.travis.yml

+3-1
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,9 @@ install:
1717
- nvm install stable
1818
- nvm use stable
1919
- npm install remark-cli remark-lint
20-
- cargo install rustfmt
20+
# || true, because we cache rustfmt and don't want to crash on the next travis run
21+
# due to rustfmt already being installed
22+
- (cargo install rustfmt || true)
2123

2224
script:
2325
- remark -f README.md > /dev/null

0 commit comments

Comments
 (0)