Skip to content

Commit d7e965a

Browse files
kchodorowmeteorcloudy
authored andcommitted
Fix the images in the recursive WS design doc
Somehow they were all uploaded as 0 bytes, but that's okay because the URLs in the design doc were wrong, anyway. Relavant design doc: https://bazel.build/designs/2016/09/19/recursive-ws-parsing.html, issue #1943. -- PiperOrigin-RevId: 145799866 MOS_MIGRATED_REVID=145799866
1 parent c637fbb commit d7e965a

File tree

4 files changed

+3
-3
lines changed

4 files changed

+3
-3
lines changed

site/assets/ws-diamond.png

22.8 KB
Loading

site/assets/ws-line.png

20 KB
Loading

site/assets/ws-multiline.png

21.6 KB
Loading

site/designs/_posts/2016-09-19-recursive-ws-parsing.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ about don't need to be resolved.
3939
Suppose we have a main repository that depends on repo x, and x depends on repo
4040
y:
4141

42-
<img src="/assets/ws-line.jpg" class="img-responsive">
42+
<img src="/assets/ws-line.png" class="img-responsive">
4343

4444
In this case, version 1 of "foo" wins. This way, if a library has already
4545
figured out which version works for them, its reverse dependencies do not have
@@ -54,7 +54,7 @@ If there is no obvious hierarchy and multiple versions are specified, error out.
5454
Report what each chain of dependencies was that wanted the dep and at which
5555
versions:
5656

57-
<img src="/assets/ws-multiline.jpg" class="img-responsive">
57+
<img src="/assets/ws-multiline.png" class="img-responsive">
5858

5959
In this case, Bazel would error out with:
6060

@@ -68,7 +68,7 @@ vs. bazel-external/a/WORKSPACE:2 repository(name = 'foo' version = '2')
6868

6969
This is also the case with diamond dependencies:
7070

71-
<img src="/assets/ws-diamond.jpg" class="img-responsive">
71+
<img src="/assets/ws-diamond.png" class="img-responsive">
7272

7373
This would print:
7474

0 commit comments

Comments
 (0)