From eb7b01f450ca10f59e1a3d4df4222eab9e475829 Mon Sep 17 00:00:00 2001 From: Bob Mottram Date: Thu, 3 Nov 2016 14:51:43 +0000 Subject: [PATCH] Obtaining tox repo key --- src/freedombone-app-tox | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/freedombone-app-tox b/src/freedombone-app-tox index 5d464c6a..411d00c4 100755 --- a/src/freedombone-app-tox +++ b/src/freedombone-app-tox @@ -688,7 +688,9 @@ function enable_tox_repo { echo 'deb http://download.opensuse.org/repositories/home:/antonbatenev:/tox/Debian_8.0/ /' > $rootdir/etc/apt/sources.list.d/tox.list - chroot "$rootdir" /usr/bin/wget -q http://download.opensuse.org/repositories/home:antonbatenev:tox/Debian_8.0/Release.key -O- | apt-key add - + chroot "$rootdir" /usr/bin/wget -q http://download.opensuse.org/repositories/home:antonbatenev:tox/Debian_8.0/Release.key -O- > /root/tox.key + chroot "$rootdir" apt-key add /root/tox.key + chroot "$rootdir" rm /root/tox.key chroot "$rootdir" apt-get update echo "Tox Repository Installed." }