1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-05 05:00:19 -05:00

adding core version number in output for CS (#1051)

This commit is contained in:
Joseph Flinn 2020-12-18 09:33:12 -08:00 committed by GitHub
parent 5c5544a4f4
commit 2a9f878587
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 7 additions and 5 deletions

View File

@ -100,6 +100,7 @@ https://bitwarden.com, https://github.com/bitwarden
"
if($env:BITWARDEN_QUIET -ne "true") {
Write-Line "bitwarden.ps1 version ${coreVersion}"
docker --version
docker-compose --version
}

View File

@ -19,11 +19,6 @@ https://bitwarden.com, https://github.com/bitwarden
EOF
docker --version
docker-compose --version
echo ""
# Setup
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
@ -40,6 +35,12 @@ GITHUB_BASE_URL="https://raw.githubusercontent.com/bitwarden/server/master"
COREVERSION="1.38.2"
WEBVERSION="2.17.1"
echo "bitwarden.sh version $COREVERSION"
docker --version
docker-compose --version
echo ""
# Functions
function downloadSelf() {