Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
tor-browser-build
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Container registry
Model registry
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
GitLab community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Applications
tor-browser-build
Commits
aefae00e
Unverified
Commit
aefae00e
authored
Oct 29, 2024
by
boklm
Browse files
Options
Downloads
Patches
Plain Diff
Bug 41288: Use exec_noco option when using exec
Use the `exec_noco` option added in rbm#40006.
parent
344327b6
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!1083
Bug 41288: Use exec_noco option when using exec
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
projects/firefox/config
+3
-3
3 additions, 3 deletions
projects/firefox/config
projects/geckoview/config
+3
-3
3 additions, 3 deletions
projects/geckoview/config
with
6 additions
and
6 deletions
projects/firefox/config
+
3
−
3
View file @
aefae00e
...
...
@@ -21,10 +21,10 @@ var:
browser_branch
:
'
[%
c("var/browser_series")
%]-[%
c("var/browser_rebase")
%]'
browser_build
:
1
branding_directory_prefix
:
'
tb'
copyright_year
:
'
[%
exec("git
show
-s
--format=%ci").remove("-.*")
%]'
copyright_year
:
'
[%
exec("git
show
-s
--format=%ci"
_
c("git_hash")
_
"^{commit}",
{
exec_noco
=>
1
}
).remove("-.*")
%]'
nightly_updates_publish_dir
:
'
[%
c("var/nightly_updates_publish_dir_prefix")
%]nightly-[%
c("var/osname")
%]'
gitlab_project
:
https://gitlab.torproject.org/tpo/applications/tor-browser
git_commit
:
'
[%
exec("git
rev-parse
HEAD"
)
%]'
git_commit
:
'
[%
exec("git
rev-parse
"
_
c("git_hash")
_
"^{commit}",
{
exec_noco
=>
1
}
)
%]'
deps
:
-
build-essential
-
autoconf
...
...
@@ -53,7 +53,7 @@ var:
mv -f -- "$rezip_tmpdir/new.zip" [% c("rezip_file") %]
rm -Rf "$rezip_tmpdir"
l10n-changesets
:
'
[%
exec("
cat
browser/locales/l10n-changesets.json")
%]'
l10n-changesets
:
'
[%
exec("
git
--no-pager
show
"
_
c("git_hash")
_
":
browser/locales/l10n-changesets.json"
,
{
exec_noco
=>
1
}
)
%]'
steps
:
src-tarballs
:
...
...
...
...
This diff is collapsed.
Click to expand it.
projects/geckoview/config
+
3
−
3
View file @
aefae00e
...
...
@@ -22,9 +22,9 @@ var:
browser_rebase
:
1
browser_branch
:
'
[%
c("var/browser_series")
%]-[%
c("var/browser_rebase")
%]'
browser_build
:
1
copyright_year
:
'
[%
exec("git
show
-s
--format=%ci").remove("-.*")
%]'
copyright_year
:
'
[%
exec("git
show
-s
--format=%ci"
_
c("git_hash")
_
"^{commit}",
{
exec_noco
=>
1
}
).remove("-.*")
%]'
gitlab_project
:
https://gitlab.torproject.org/tpo/applications/tor-browser
git_commit
:
'
[%
exec("git
rev-parse
HEAD"
)
%]'
git_commit
:
'
[%
exec("git
rev-parse
"
_
c("git_hash")
_
"^{commit}",
{
exec_noco
=>
1
}
)
%]'
deps
:
-
build-essential
-
autoconf
...
...
@@ -41,7 +41,7 @@ var:
glean_parser
:
14.0.1
variant
:
beta
has_l10n
:
'
[%
!c("var/testbuild")
&&
!c("var/locales").empty
%]'
l10n-changesets
:
'
[%
exec("
cat
browser/locales/l10n-changesets.json")
%]'
l10n-changesets
:
'
[%
exec("
git
--no-pager
show
"
_
c("git_hash")
_
":
browser/locales/l10n-changesets.json"
,
{
exec_noco
=>
1
}
)
%]'
targets
:
release
:
...
...
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
sign in
to comment