Skip to content

Commit 95d932a

Browse files
author
OpenShift Bot
committed
Merge pull request #485 from cgwalters/readme-more-quotes
Merged by openshift-bot
2 parents 528d0e9 + fcac816 commit 95d932a

File tree

1 file changed

+9
-5
lines changed

1 file changed

+9
-5
lines changed

README.md

Lines changed: 9 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -75,18 +75,22 @@ And the `*/*/temp*` rule prevents the filtering of any files starting with `temp
7575
Next, to illustrate exception rules, first consider the following example snippet of a `.s2iignore` file:
7676

7777

78-
*.md
79-
!README.md
78+
```
79+
*.md
80+
!README.md
81+
```
8082

8183

8284
With this exception rule example, README.md will not be filtered, and remain in the image s2i produces. However, with this snippet:
8385

8486

85-
!README.md
86-
*.md
87+
```
88+
!README.md
89+
*.md
90+
```
8791

8892

89-
README.md, if filtered by any prior rules, but then put back in by `!README.md`, would be filtered, and not part of the resulting image s2i produces. Since `*.md` follows `!README.md`, `*.md` takes precedence.
93+
`README.md`, if filtered by any prior rules, but then put back in by `!README.md`, would be filtered, and not part of the resulting image s2i produces. Since `*.md` follows `!README.md`, `*.md` takes precedence.
9094

9195
Users can also set extra environment variables in the application source code.
9296
They are passed to the build, and the `assemble` script consumes them. All

0 commit comments

Comments
 (0)