Browse Source

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

pull/1055/head
Joseph Flinn 5 years ago committed by GitHub
parent
commit
2a9f878587
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 1
      scripts/bitwarden.ps1
  2. 11
      scripts/bitwarden.sh

1
scripts/bitwarden.ps1

@ -100,6 +100,7 @@ https://bitwarden.com, https://github.com/bitwarden @@ -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
}

11
scripts/bitwarden.sh

@ -19,11 +19,6 @@ https://bitwarden.com, https://github.com/bitwarden @@ -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" @@ -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() {

Loading…
Cancel
Save