diff options
author | Stefan Kangas <stefankangas@gmail.com> | 2022-10-19 13:26:54 +0200 |
---|---|---|
committer | Stefan Kangas <stefankangas@gmail.com> | 2022-10-19 13:26:54 +0200 |
commit | a9111d8670b48f473e968a0e75d83782dbf74425 (patch) | |
tree | 4bc5653250eb2db2e95b9da8393556d5e776fbd8 /admin/diff-tar-files | |
parent | 5247a72aecb417e2f71e37af40ebacdfc26158b7 (diff) | |
download | emacs-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-x | admin/diff-tar-files | 8 |
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 |