From 232517cde5d8e9633915a0afdb593bf24b22aab2 Mon Sep 17 00:00:00 2001 From: Kitteh Date: Tue, 6 Nov 2018 10:04:08 +0000 Subject: [PATCH] [Scripts] Use sudo to install prebuilt MPV. --- scripts/build-deps.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build-deps.sh b/scripts/build-deps.sh index f8b864c..260856b 100755 --- a/scripts/build-deps.sh +++ b/scripts/build-deps.sh @@ -10,7 +10,7 @@ mkdir -p ~/.cache/deps if [[ "${USE_PREBUILT_MPV}" ]]; then wget https://github.com/NamedKitten/mpv-builder/releases/download/continuous/deps.tar.xz -tar xvf deps.tar.xz -C / +sudo tar xvf deps.tar.xz -C / exit 0 fi