quilt-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Quilt-dev] [PATCH] inspect-wrapper: Minor code optimization


From: Jean Delvare
Subject: [Quilt-dev] [PATCH] inspect-wrapper: Minor code optimization
Date: Wed, 29 Oct 2014 14:48:18 +0100

Don't test if inputfile is set twice in a row.
---
 quilt/scripts/inspect-wrapper.in |    6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

--- a/quilt/scripts/inspect-wrapper.in
+++ b/quilt/scripts/inspect-wrapper.in
@@ -226,13 +226,15 @@ unzip)
        inputfile=$(unzip_input_file "$@")
        ;;
 esac
-if [ -z "$inputfile" ]
+if [ -n "$inputfile" ]
 then
+       unpackfile=$(original_file "$inputfile")
+else
        # put data from stdin into tmpfile
        cat > $tmpdir/data
+       unpackfile=$(original_file $tmpdir/data)
 fi
 
-unpackfile=$(original_file ${inputfile:-$tmpdir/data})
 if [ -n "$unpackfile" ]
 then
        case "${0##*/}" in


-- 
Jean Delvare
SUSE L3 Support



reply via email to

[Prev in Thread] Current Thread [Next in Thread]