Skip to content

Commit c7ab3c9

Browse files
authored
Merge pull request #299 from rust-lang/redo-styling
Redo styling
2 parents 87a3225 + 31418f9 commit c7ab3c9

File tree

341 files changed

+1967
-15156
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

341 files changed

+1967
-15156
lines changed

.gitignore

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1-
.sass-cache
2-
_site
3-
*~
1+
/target/
2+
**/*.rs.bk
3+
site
4+
static/styles/vendor.css
5+
static/styles/app.css
6+
static/styles/fonts.css

.travis.yml

Lines changed: 7 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,7 @@
1-
language: generic
2-
3-
addons:
4-
apt:
5-
packages:
6-
- aspell
7-
- aspell-en
8-
- ack-grep
9-
10-
before_install:
11-
- chmod +x ci/spellcheck.sh
12-
- sudo ln -sf /usr/bin/ack-grep /usr/local/bin/ack
13-
14-
script: ./ci/spellcheck.sh
15-
16-
branches:
17-
only:
18-
- gh-pages
19-
- /.*/
1+
language: rust
2+
cache: cargo
3+
rust: nightly
4+
script:
5+
- cargo run
6+
after_success:
7+
- test $TRAVIS_PULL_REQUEST == "false" && test $TRAVIS_BRANCH == "master" && bash deploy.sh

0 commit comments

Comments
 (0)