From bc7a7b0c2d5208dfd58462e2802225c22f4a979e Mon Sep 17 00:00:00 2001 From: Vadim Zeitlin Date: Tue, 23 Mar 2021 01:59:05 +0100 Subject: [PATCH] Hide confusing output from "tee --append" This is used to just append to the file, not actually to see the output of our own echo commands. --- build/tools/before_install.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/tools/before_install.sh b/build/tools/before_install.sh index f8b4c59658..6a5634bcef 100755 --- a/build/tools/before_install.sh +++ b/build/tools/before_install.sh @@ -17,7 +17,7 @@ case $(uname -s) in # Enable the `-dbgsym` repositories. echo "deb http://ddebs.ubuntu.com ${codename} main restricted universe multiverse deb http://ddebs.ubuntu.com ${codename}-updates main restricted universe multiverse" | \ - $SUDO tee --append /etc/apt/sources.list.d/ddebs.list + $SUDO tee --append /etc/apt/sources.list.d/ddebs.list >/dev/null # Import the debug symbol archive signing key from the Ubuntu server. # Note that this command works only on Ubuntu 18.04 LTS and newer.