ALT Linux Bugzilla
– Attachment 4960 Details for
Bug 25686
hsh --init заполняет кэш, прямо не говоря об этом
New bug
|
Search
|
[?]
|
Help
Register
|
Log In
[x]
|
Forgot Password
Login:
[x]
|
EN
|
RU
[patch]
Patch using tee(1)
tee.patch (text/plain), 799 bytes, created by
Dmitry Chistikov
on 2011-06-02 10:00:39 MSK
(
hide
)
Description:
Patch using tee(1)
Filename:
MIME Type:
Creator:
Dmitry Chistikov
Created:
2011-06-02 10:00:39 MSK
Size:
799 bytes
patch
obsolete
>diff --git a/hasher/hsh-sh-functions.in b/hasher/hsh-sh-functions.in >index 460fc89..36476ad 100644 >--- a/hasher/hsh-sh-functions.in >+++ b/hasher/hsh-sh-functions.in >@@ -628,13 +628,14 @@ print_uris() > { > local out > local options='-q -y -o RPM::PM=external -o Dir::Bin::rpm=hsh-rpmi-print-files' >- if ! out="$("$aptbox/apt-get" $options install -- "$@" 2>&1)"; then >- printf %s\\n "$out" >&2 >- fatal 'failed to calculate package file list.' >+ set -o pipefail >+ if ! out="$("$aptbox/apt-get" $options install -- "$@" 2>&1 | tee /dev/stderr)"; then >+ set +o pipefail >+ fatal 'Failed to calculate package file list.' > fi > > printf %s "$out" |LC_ALL=C grep '^/.*\.rpm$' || [ $? -eq 1 ] >- verbose 'calculated package file list.' >+ verbose 'Calculated package file list.' > } > > parse_xauth_entry()
You cannot view the attachment while viewing its details because your browser does not support IFRAMEs.
View the attachment on a separate page
.
View Attachment As Diff
View Attachment As Raw
Actions:
View
|
Diff
Attachments on
bug 25686
:
4959
| 4960