From 3c2fd473bd53ab4f4e378a4da03ebf7f58099a3c Mon Sep 17 00:00:00 2001 From: Anthony Truskinger Date: Wed, 23 Jun 2021 16:52:24 +1000 Subject: [PATCH] Update apt sources before installing dependencies on CI --- build/install_dependencies.ps1 | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/build/install_dependencies.ps1 b/build/install_dependencies.ps1 index f7c20cb6a..431cee09e 100644 --- a/build/install_dependencies.ps1 +++ b/build/install_dependencies.ps1 @@ -22,10 +22,13 @@ if ($IsLinux) { sudo update-binfmts --display } + log "Updating apt sources" + exec { sudo apt-get update } + log "Installing SoX" exec { sudo apt-get install -y libsox-fmt-all sox } log "Installing wavpack" exec { sudo apt-get install -y wavpack } -} \ No newline at end of file +}