From fe70a3516393da1ecf12bf6f39d129a65e62951a Mon Sep 17 00:00:00 2001 From: Kyle Spearrin Date: Wed, 20 Dec 2017 23:38:27 -0500 Subject: [PATCH] revert run file updates for now. --- scripts/run.ps1 | 2 +- scripts/run.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/run.ps1 b/scripts/run.ps1 index 579c731a4c..c4de7cb893 100644 --- a/scripts/run.ps1 +++ b/scripts/run.ps1 @@ -42,7 +42,7 @@ function Update-Lets-Encrypt { function Update-Database { Pull-Setup - docker run -it --rm --name setup --network container:bitwarden-mssql -v ${outputDir}:/bitwarden bitwarden/setup:$coreVersion ` + docker run -it --rm --name setup --network container:mssql -v ${outputDir}:/bitwarden bitwarden/setup:$coreVersion ` dotnet Setup.dll -update 1 -db 1 -os win -corev $coreVersion -webv $webVersion echo "Database update complete" } diff --git a/scripts/run.sh b/scripts/run.sh index 7bf3925158..3e51254104 100644 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -60,7 +60,7 @@ function updateLetsEncrypt() { function updateDatabase() { pullSetup - docker run -it --rm --name setup --network container:bitwarden-mssql -v $OUTPUT_DIR:/bitwarden bitwarden/setup:$COREVERSION \ + docker run -it --rm --name setup --network container:mssql -v $OUTPUT_DIR:/bitwarden bitwarden/setup:$COREVERSION \ dotnet Setup.dll -update 1 -db 1 -os $OS -corev $COREVERSION -webv $WEBVERSION echo "Database update complete" }