morgan pushed to branch main at The Tor Project / Applications / tor-browser-build
Commits:
-
8ed4f7ac
by Nicolas Vigier at 2025-01-29T13:24:56+01:00
-
c928d6ef
by Nicolas Vigier at 2025-01-29T13:42:07+01:00
3 changed files:
Changes:
1 | -Subproject commit c6a40950607fa73861f81185764dff2bab150010 |
|
1 | +Subproject commit 8c773150bc10133f3903841c233458dc07456d2e |
... | ... | @@ -252,7 +252,6 @@ targets: |
252 | 252 | alpha: 1
|
253 | 253 | channel: alpha
|
254 | 254 | nightly:
|
255 | - fetch: 1
|
|
256 | 255 | var:
|
257 | 256 | nightly: 1
|
258 | 257 | channel: nightly
|
... | ... | @@ -114,15 +114,14 @@ targets: |
114 | 114 | |
115 | 115 | nightly:
|
116 | 116 | |
117 | - ### By default 'fetch' is set to 1 for nightly builds, meaning that new
|
|
118 | - ### commits will be fetched automatically during each build. You can
|
|
119 | - ### disable this during development if you want to do rebuilds to test
|
|
120 | - ### a specific change, but don't want rebuilds caused by unrelated
|
|
121 | - ### changes, or if you want to decide at which point new commits are
|
|
122 | - ### fetched. When 'fetch' is set to 'if_needed', new commits will only
|
|
123 | - ### be fetched if the selected commit (or branch, or tag) is not present,
|
|
124 | - ### which means that existing branches won't be updated. In that case
|
|
125 | - ### you can fetch new commits by running 'make fetch'.
|
|
126 | - #fetch: 'if_needed'
|
|
117 | + ### By default 'fetch' is set to 'if_needed', meaning that new
|
|
118 | + ### commits will be fetched automatically during each build, if
|
|
119 | + ### the selected commit (or branch, or tag) is not present, or if
|
|
120 | + ### it is pointing to a branch. With the nightly target, some projects
|
|
121 | + ### are pointing to a branch, meaning they will be fetched for each
|
|
122 | + ### build. If you want to disable automatic fetchs and decide at
|
|
123 | + ### which point new commits are fetched, you can set 'fetch' to '0'
|
|
124 | + ### and run `make fetch` when you want to fetch new commits.
|
|
125 | + #fetch: 0
|
|
127 | 126 | |
128 | 127 | # vim: filetype=yaml sw=2 |