diff options
-rwxr-xr-x | tools/git/update-copyrights.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/git/update-copyrights.sh b/tools/git/update-copyrights.sh index e31dfb9..4112ef9 100755 --- a/tools/git/update-copyrights.sh +++ b/tools/git/update-copyrights.sh @@ -3,7 +3,7 @@ # Use of this source code is governed by a BSD-style license that can be # found in the LICENSE file. -tmp=$(mktemp) +tmp=$(mktemp -t chromium-update-copyrights.XXXXX) trap "rm -f $tmp" EXIT git diff --name-only $(git cl upstream)... | while read file; do cp "$file" "$tmp" |