From 6fa948e383ed5005a1b981fb21a8d4f74f279512 Mon Sep 17 00:00:00 2001 From: Robert Nelson Date: Wed, 8 Jan 2025 14:35:55 -0600 Subject: [PATCH] ci: rootfs: wget quiet, so we can see ci log Signed-off-by: Robert Nelson --- 06_generate_debian_console_root.sh | 2 +- 06_generate_ubuntu_console_root.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/06_generate_debian_console_root.sh b/06_generate_debian_console_root.sh index 32516ce..c931161 100755 --- a/06_generate_debian_console_root.sh +++ b/06_generate_debian_console_root.sh @@ -18,7 +18,7 @@ if [ -f /tmp/latest ] ; then if [ ! -f ./deploy/debian-sid-console-riscv64-${datestamp}/riscv64-rootfs-debian-sid.tar ] ; then if [ -f ./.gitlab-runner ] ; then - wget -c --directory-prefix=./deploy http://192.168.1.98/mirror/rcn-ee.us/rootfs/debian-riscv64-sid-minimal/${datestamp}/${latest_rootfs} + wget -c --quiet --directory-prefix=./deploy http://192.168.1.98/mirror/rcn-ee.us/rootfs/debian-riscv64-sid-minimal/${datestamp}/${latest_rootfs} else wget -c --directory-prefix=./deploy https://rcn-ee.net/rootfs/debian-riscv64-sid-minimal/${datestamp}/${latest_rootfs} fi diff --git a/06_generate_ubuntu_console_root.sh b/06_generate_ubuntu_console_root.sh index 8e6a4f6..5695114 100755 --- a/06_generate_ubuntu_console_root.sh +++ b/06_generate_ubuntu_console_root.sh @@ -18,7 +18,7 @@ if [ -f /tmp/latest ] ; then if [ ! -f ./deploy/ubuntu-24.04-console-riscv64-${datestamp}/riscv64-rootfs-ubuntu-noble.tar ] ; then if [ -f ./.gitlab-runner ] ; then - wget -c --directory-prefix=./deploy http://192.168.1.98/mirror/rcn-ee.us/rootfs/ubuntu-riscv64-24.04-minimal/${datestamp}/${latest_rootfs} + wget -c --quiet --directory-prefix=./deploy http://192.168.1.98/mirror/rcn-ee.us/rootfs/ubuntu-riscv64-24.04-minimal/${datestamp}/${latest_rootfs} else wget -c --directory-prefix=./deploy https://rcn-ee.net/rootfs/ubuntu-riscv64-24.04-minimal/${datestamp}/${latest_rootfs} fi