We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 5903ed2 commit 976be59Copy full SHA for 976be59
.github/scripts/fetch_dependencies.sh
@@ -6,7 +6,7 @@ cache_option=Dir::Cache::Archives="${cache_dir}"
6
set -x
7
8
mkdir -p "$cache_dir"
9
-sudo apt -o "$cache_option" update
10
-sudo apt -o "$cache_option" install -y clang
11
-sudo xargs -a apt-deps.txt apt -o "$cache_option" install -y
+sudo apt -o "$cache_option" update > /dev/null 2>&1
+sudo apt -o "$cache_option" install -y clang > /dev/null 2>&1
+sudo xargs -a apt-deps.txt apt -o "$cache_option" install -y > /dev/null 2>&1
12
sudo rm -rf "${cache_dir}/partial" "${cache_dir}/lock"
0 commit comments