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
800e2fff
Commit
800e2fff
authored
Feb 28, 2024
by
boklm
Committed by
richard
Feb 29, 2024
Browse files
Options
Downloads
Patches
Plain Diff
Bug 41097: authenticode-timestamping.sh: create $tmp_dir with mktemp -d
parent
b5acc813
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!927
Bug 41097: authenticode-timestamping.sh: create $tmp_dir with mktemp -d
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
tools/signing/authenticode-timestamping.sh
+2
-4
2 additions, 4 deletions
tools/signing/authenticode-timestamping.sh
with
2 additions
and
4 deletions
tools/signing/authenticode-timestamping.sh
+
2
−
4
View file @
800e2fff
...
...
@@ -46,8 +46,8 @@ test -f "$osslsigncode_file" ||
which rename
>
/dev/null 2>&1
||
exit_error
'`rename` is missing.'
tmp_dir
=
"
$signed_dir
/
$tbb_version
/tmp-timestamp"
mkdir
"
$tmp_dir
"
tmp_dir
=
$(
mktemp
-d
)
trap
"rm -Rf
$tmp_dir
"
EXIT
tar
-C
"
$tmp_dir
"
-xf
"
$osslsigncode_file
"
export
PATH
=
"
$PATH
:
$tmp_dir
/osslsigncode/bin"
...
...
@@ -64,5 +64,3 @@ do
done
echo
"Timestamped
$COUNT
.exe files, now renaming"
rename
-f
's/-timestamped//'
*
-timestamped
rm
-Rf
"
$tmp_dir
"
This diff is collapsed.
Click to expand it.
boklm
@boklm
mentioned in commit
02f786b2
·
Feb 29, 2024
mentioned in commit
02f786b2
mentioned in commit 02f786b28ff949d5af636c873e1f8cd738bbb1aa
Toggle commit list
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