Skip to content

Commit 3db55ea

Browse files
committed
*: fetch code-of-conduct.md from tob (#413)
Signed-off-by: Vincent Batts <[email protected]>
1 parent b373a15 commit 3db55ea

File tree

4 files changed

+7
-41
lines changed

4 files changed

+7
-41
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
output
22
schema/validate
3+
code-of-conduct.md

Makefile

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ default: docs
2222
.PHONY: docs
2323
docs: output/docs.pdf output/docs.html
2424

25-
output/docs.pdf:
25+
output/docs.pdf: $(DOC_FILES)
2626
mkdir -p output/ && \
2727
$(DOCKER) run \
2828
-it \
@@ -32,7 +32,7 @@ output/docs.pdf:
3232
-u $(shell id -u) \
3333
vbatts/pandoc -f markdown_github -t latex -o /$@ $(patsubst %,/input/%,$(DOC_FILES))
3434

35-
output/docs.html:
35+
output/docs.html: $(DOC_FILES)
3636
mkdir -p output/ && \
3737
$(DOCKER) run \
3838
-it \
@@ -42,6 +42,8 @@ output/docs.html:
4242
-u $(shell id -u) \
4343
vbatts/pandoc -f markdown_github -t html5 -o /$@ $(patsubst %,/input/%,$(DOC_FILES))
4444

45+
code-of-conduct.md:
46+
curl -o $@ https://raw.githubusercontent.com/opencontainers/tob/d2f9d68c1332870e40693fe077d311e0742bc73d/code-of-conduct.md
4547

4648
HOST_GOLANG_VERSION = $(shell go version | cut -d ' ' -f3 | cut -c 3-)
4749
# this variable is used like a function. First arg is the minimum version, Second arg is the version to be checked.

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The [Open Container Initiative](http://www.opencontainers.org/) develops specifi
66
Table of Contents
77

88
- [Introduction](README.md)
9-
- [Code of Conduct](code-of-conduct.md)
9+
- [Code of Conduct](#code-of-conduct)
1010
- [Container Principles](principles.md)
1111
- [Style and Conventions](style.md)
1212
- [Roadmap](ROADMAP.md)
@@ -59,7 +59,7 @@ The specification and code is licensed under the Apache 2.0 license found in the
5959

6060
## Code of Conduct
6161

62-
Participation in the OpenContainers community is governed by [OpenContainer's Code of Conduct](https://github.com/opencontainers/tob/blob/master/code-of-conduct.md).
62+
Participation in the OpenContainers community is governed by [OpenContainer's Code of Conduct](https://github.com/opencontainers/tob/blob/d2f9d68c1332870e40693fe077d311e0742bc73d/code-of-conduct.md).
6363

6464
## Discuss your design
6565

code-of-conduct.md

Lines changed: 0 additions & 37 deletions
This file was deleted.

0 commit comments

Comments
 (0)