From c7f88e4e6fa73cb8292e862cc6e75a4ae4c4323c Mon Sep 17 00:00:00 2001 From: Jack Danger Canty Date: Tue, 21 Jul 2015 01:38:28 -0700 Subject: [PATCH] Adding --silent flag to curling text file This file isn't a huge binary so I think it's appropriate to use the `-s` flag like elsewhere in this file. --- rpi-update | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpi-update b/rpi-update index 98a4ebe..307b930 100755 --- a/rpi-update +++ b/rpi-update @@ -45,7 +45,7 @@ function update_self() { echo " *** Performing self-update" _tempFileName="$0.tmp" - if ! curl -L --output "${_tempFileName}" "${UPDATE_URI}"; then + if ! curl -Ls --output "${_tempFileName}" "${UPDATE_URI}"; then echo " !!! Failed to download update for rpi-update!" echo " !!! Make sure you have ca-certificates installed and that the time is set correctly" exit 1