From 448e536ba443f24c73a03d05815c66f54016c2a2 Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Mon, 18 Sep 2017 12:14:39 -0400 Subject: [PATCH] add back downloadallfiles function --- scripts/bitwarden.ps1 | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/scripts/bitwarden.ps1 b/scripts/bitwarden.ps1 index 57a087c412..bfd7178cce 100644 --- a/scripts/bitwarden.ps1 +++ b/scripts/bitwarden.ps1 @@ -74,6 +74,11 @@ function Download-Docker-Files { Invoke-RestMethod -OutFile $dockerDir\mssql.env -Uri "${githubBaseUrl}/docker/mssql.env" } +function Download-All-Files { + Download-Run-File + Download-Docker-Files +} + function Check-Output-Dir-Exists { if(!(Test-Path -Path $output)) { throw "Cannot find a bitwarden installation at $output."