summaryrefslogtreecommitdiff
path: root/admin/diff-tar-files
diff options
context:
space:
mode:
authorStefan Kangas <stefankangas@gmail.com>2022-10-19 13:26:54 +0200
committerStefan Kangas <stefankangas@gmail.com>2022-10-19 13:26:54 +0200
commita9111d8670b48f473e968a0e75d83782dbf74425 (patch)
tree4bc5653250eb2db2e95b9da8393556d5e776fbd8 /admin/diff-tar-files
parent5247a72aecb417e2f71e37af40ebacdfc26158b7 (diff)
downloademacs-a9111d8670b48f473e968a0e75d83782dbf74425.tar.gz
emacs-a9111d8670b48f473e968a0e75d83782dbf74425.tar.bz2
emacs-a9111d8670b48f473e968a0e75d83782dbf74425.zip
Add admin/emacs-shell-lib for shared bash code
* admin/emacs-shell-lib: New file for shared bash code. * admin/automerge: * admin/diff-tar-files: * admin/emacs-shell-lib: * admin/make-manuals: * admin/update_autogen: * admin/upload-manuals: Simplify and improve using above new library.
Diffstat (limited to 'admin/diff-tar-files')
-rwxr-xr-xadmin/diff-tar-files8
1 files changed, 4 insertions, 4 deletions
diff --git a/admin/diff-tar-files b/admin/diff-tar-files
index 6ab39eab2f5..869c9421502 100755
--- a/admin/diff-tar-files
+++ b/admin/diff-tar-files
@@ -1,4 +1,4 @@
-#! /bin/sh
+#!/bin/bash
# Copyright (C) 2001-2022 Free Software Foundation, Inc.
@@ -17,6 +17,7 @@
# You should have received a copy of the GNU General Public License
# along with GNU Emacs. If not, see <https://www.gnu.org/licenses/>.
+source "${0%/*}/emacs-shell-lib"
if [ $# != 2 ]; then
cat <<EOF
@@ -31,9 +32,8 @@ fi
old_tar=$1
new_tar=$2
-old_tmp=/tmp/old.$$
-new_tmp=/tmp/new.$$
-trap "rm -f $old_tmp $new_tmp; exit 1" 1 2 15
+old_tmp="$(emacs_mktemp ${PN}-old)"
+new_tmp="$(emacs_mktemp ${PN}-new)"
tar tf "$old_tar" | sed -e 's,^[^/]*,,' | sort > $old_tmp
tar tf "$new_tar" | sed -e 's,^[^/]*,,' | sort > $new_tmp