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
7945d332
Unverified
Commit
7945d332
authored
8 months ago
by
boklm
Browse files
Options
Downloads
Patches
Plain Diff
Bug 41363: Make separate update_responses commit for each platform
parent
b1bd59c3
No related branches found
No related tags found
1 merge request
!1172
Bug 41374+40799+41363+41394: Make separate update_responses commit for each platform
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/signing/upload-update_responses-to-staticiforme
+25
-1
25 additions, 1 deletion
tools/signing/upload-update_responses-to-staticiforme
with
25 additions
and
1 deletion
tools/signing/upload-update_responses-to-staticiforme
+
25
−
1
View file @
7945d332
...
...
@@ -39,7 +39,31 @@ do
mv
"
$file
"
"
$tbb_version_type
/
$fname
"
done
# Keep directory from previous release if they are not in the new release.
# This happens when a release does not include some platforms.
for
file
in
$(
ls
-1
"
$old_ur
/
$tbb_version_type
"
)
do
test
-d
"
$old_ur
/
$tbb_version_type
/
$file
"
||
continue
test
-d
"
$tbb_version_type
/
$file
"
&&
continue
mv
-f
"
$old_ur
/
$tbb_version_type
/
$file
"
"
$tbb_version_type
/
$file
"
done
# Commit each sub-directory separately
for
file
in
$(
ls
-1
"
$tbb_version_type
"
)
do
test
-d
"
$tbb_version_type
/
$file
"
||
continue
git add
"
$tbb_version_type
/
$file
"
git add
"
$tbb_version_type
/download-
$file
.json"
git diff
--quiet
--cached
--exit-code
||
\
git commit
-m
"
$tbb_version_type
: new version,
$tbb_version
(
$file
)"
done
git add
"
$tbb_version_type
"
/download-android-
*
.json
git diff
--quiet
--cached
--exit-code
||
\
git commit
-m
"
$tbb_version_type
: new version,
$tbb_version
(android)"
git add
"
$tbb_version_type
"
git diff
--quiet
--cached
--exit-code
||
\
git commit
-m
"
$tbb_version_type
: new version,
$tbb_version
"
git push
...
...
...
...
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