summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorLeah Rowe <leah@libreboot.org>2025-05-26 00:44:57 +0100
committerLeah Rowe <leah@libreboot.org>2025-05-26 00:44:57 +0100
commitafc36754b13de41bfbea5ebf5202bdb01cb4aeeb (patch)
tree9daf47e3abc55cfd7f2069281ab5d8a38a591285 /include
parentffe387ac6b98d99f82660410f23bb931e04beed8 (diff)
get.sh: remove redundant printf in fetch_project
The following execution will result in another printf that says exactly what is being downloaded. There is no need to inform the user twice about what is being downloaded. Signed-off-by: Leah Rowe <leah@libreboot.org>
Diffstat (limited to 'include')
-rw-r--r--include/get.sh1
1 files changed, 0 insertions, 1 deletions
diff --git a/include/get.sh b/include/get.sh
index 4105b93f..639d101d 100644
--- a/include/get.sh
+++ b/include/get.sh
@@ -26,7 +26,6 @@ fetch_project()
[ -n "$xtree" ] && x_ ./mk -f coreboot "$xtree"
[ -z "$depend" ] || for d in $depend ; do
- printf "'%s' needs '%s'; grabbing '%s'\n" "$project" "$d" "$d"
x_ ./mk -f $d
done
clone_project