diff options
author | Dave Reisner <dreisner@archlinux.org> | 2011-12-07 05:39:09 +0100 |
---|---|---|
committer | Dan McGee <dan@archlinux.org> | 2011-12-12 19:52:40 +0100 |
commit | 67290441b80fa813a472767353095425c78805af (patch) | |
tree | b325e1007b7dc1ed7ae2bdccd661035e05e54d66 | |
parent | b75fac5be31d6056e78fd29a0548cc3e6275a1b8 (diff) | |
download | pacman-67290441b80fa813a472767353095425c78805af.tar.gz pacman-67290441b80fa813a472767353095425c78805af.tar.xz |
contrib/paccache: silence possible output from cd
If CDPATH is set, this could possibly write to stdout.
Signed-off-by: Dave Reisner <dreisner@archlinux.org>
Signed-off-by: Dan McGee <dan@archlinux.org>
-rwxr-xr-x | contrib/paccache.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/contrib/paccache.in b/contrib/paccache.in index eae547dc..a9e5bfbc 100755 --- a/contrib/paccache.in +++ b/contrib/paccache.in @@ -261,7 +261,7 @@ if (( move || delete )); then fi # unlikely that this will fail, but better make sure -cd "$cachedir" || die "failed to chdir to \`%s'" "$cachedir" +cd "$cachedir" >/dev/null || die "failed to chdir to \`%s'" "$cachedir" # note that these results are returned in an arbitrary order from awk, but # they'll be resorted (in summarize) iff we have a verbosity level set. |