blob: b03b06a157a8dd63da1af16c799177b4696ad351 (
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
|
commands:
# Build callHello.bst
- directory: ../examples/junctions
output: ../source/sessions/junctions-build.html
command: build callHello.bst
# Run callHello.sh in a shell
- directory: ../examples/junctions
output: ../source/sessions/junctions-shell.html
command: shell callHello.bst -- /bin/sh callHello.sh
# Open a workspace on the junction:
- directory: ../examples/junctions
output: ../source/sessions/junctions-workspace-open-subproject.html
command: workspace open --directory workspace_subproject hello-junction.bst
# Open a crossJunction workspace:
- directory: ../examples/junctions
output: ../source/sessions/junctions-workspace-open.html
command: workspace open --directory workspace_hello hello-junction.bst:hello.bst
# Remove the workspaces
- directory: ../examples/junctions
command: workspace close --remove-dir hello-junction.bst
- directory: ../examples/junctions
command: workspace close --remove-dir hello-junction.bst:hello.bst
|