Skip to content
Snippets Groups Projects
Commit 02f786b2 authored by boklm's avatar boklm Committed by richard
Browse files

Bug 41097: authenticode-timestamping.sh: create $tmp_dir with mktemp -d

(cherry picked from commit 800e2fff)
parent c838ed34
Branches
Tags
No related merge requests found
......@@ -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"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please to comment