blob: 5fd10bd3d5815d73a5897c6a4dd8f6aaa778c16b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
commands:
# Make it fetch first
- directory: ../examples/directives
command: source fetch hello.bst
# Capture a build output
- directory: ../examples/directives
output: ../source/sessions/directives-build-normal.html
command: build hello.bst
# Capture a build output
- directory: ../examples/directives
output: ../source/sessions/directives-build-somber.html
command: --option flavor somber build hello.bst
# Capture a build output
- directory: ../examples/directives
output: ../source/sessions/directives-build-excited.html
command: --option flavor excited build hello.bst
# Capture a shell output
- directory: ../examples/directives
output: ../source/sessions/directives-shell-normal.html
command: shell hello.bst -- hello
# Capture a shell output
- directory: ../examples/directives
output: ../source/sessions/directives-shell-somber.html
command: --option flavor somber shell hello.bst -- hello
# Capture a shell output
- directory: ../examples/directives
output: ../source/sessions/directives-shell-excited.html
command: --option flavor excited shell hello.bst -- hello
|