Skip to content

Commit 976be59

Browse files
committed
tmp
1 parent 5903ed2 commit 976be59

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/scripts/fetch_dependencies.sh

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ cache_option=Dir::Cache::Archives="${cache_dir}"
66
set -x
77

88
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
9+
sudo apt -o "$cache_option" update > /dev/null 2>&1
10+
sudo apt -o "$cache_option" install -y clang > /dev/null 2>&1
11+
sudo xargs -a apt-deps.txt apt -o "$cache_option" install -y > /dev/null 2>&1
1212
sudo rm -rf "${cache_dir}/partial" "${cache_dir}/lock"

0 commit comments

Comments
 (0)