From a677daf849a6de2407b249f03d5315fa34b3fffc Mon Sep 17 00:00:00 2001 From: Simon Long Date: Tue, 4 Jul 2017 10:30:34 +0100 Subject: [PATCH] Remove spurious sudo from apt-get. --- debian/changelog | 6 ++++++ raspi-config | 2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/debian/changelog b/debian/changelog index cffc59c..0372232 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,3 +1,9 @@ +raspi-config (20170704) stretch; urgency=medium + + * Remove unnecessary sudo from apt-get + + -- Simon Long Tue, 04 Jul 2017 10:28:55 +0100 + raspi-config (20170627) stretch; urgency=medium * Change configuration for GL driver - no compton, keep fbturbo, allow on Pi 1 and Pi 0 diff --git a/raspi-config b/raspi-config index b271e9b..eac5ec5 100755 --- a/raspi-config +++ b/raspi-config @@ -605,7 +605,7 @@ do_vnc() { fi if [ $RET -eq 0 ]; then if [ ! -d /usr/share/doc/realvnc-vnc-server ] ; then - sudo apt-get install realvnc-vnc-server + apt-get install realvnc-vnc-server fi systemctl enable vncserver-x11-serviced.service && systemctl start vncserver-x11-serviced.service &&