Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix to use travis for markdown #39

Merged
merged 4 commits into from
Oct 11, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion .travis.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
language: python
python:
- 2.7
sudo: required
rvm:
- 2.2.0
before_install:
Expand All @@ -7,7 +10,10 @@ before_install:
install:
- deactivate
- sudo pip install xml2rfc
script:
- ruby --version
- gem install kramdown-rfc2629
script:
- ls
- make ghpages
env:
global:
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ ps2pdf ?= ps2pdf

## Work out what to build

draft := $(basename $(lastword $(sort $(wildcard draft-*.xml)) $(sort $(wildcard draft-*.org))))
draft := $(basename $(lastword $(sort $(wildcard draft-*.md)) $(sort $(wildcard draft-*.xml)) $(sort $(wildcard draft-*.org))))

ifeq (,$(draft))
$(warning No file named draft-*.md or draft-*.xml or draft-*.org)
Expand Down
Loading