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

capitalize Bitwarden

This commit is contained in:
Kyle Spearrin 2018-05-31 21:47:06 -04:00
parent c96ab26053
commit 850000ab26
4 changed files with 6 additions and 6 deletions

View File

@ -60,13 +60,13 @@ function Download-Run-File {
function Check-Output-Dir-Exists {
if (!(Test-Path -Path $output)) {
throw "Cannot find a bitwarden installation at $output."
throw "Cannot find a Bitwarden installation at $output."
}
}
function Check-Output-Dir-Not-Exists {
if (Test-Path -Path $output) {
throw "Looks like bitwarden is already installed at $output."
throw "Looks like Bitwarden is already installed at $output."
}
}

View File

@ -60,7 +60,7 @@ function downloadRunFile() {
function checkOutputDirExists() {
if [ ! -d "$OUTPUT" ]
then
echo "Cannot find a bitwarden installation at $OUTPUT."
echo "Cannot find a Bitwarden installation at $OUTPUT."
exit 1
fi
}
@ -68,7 +68,7 @@ function checkOutputDirExists() {
function checkOutputDirNotExists() {
if [ -d "$OUTPUT" ]
then
echo "Looks like bitwarden is already installed at $OUTPUT."
echo "Looks like Bitwarden is already installed at $OUTPUT."
exit 1
fi
}

View File

@ -20,7 +20,7 @@ $dockerDir = "${outputDir}\docker"
function Install() {
[string]$letsEncrypt = "n"
Write-Host "(!) " -f cyan -nonewline
[string]$domain = $( Read-Host "Enter the domain name for your bitwarden instance (ex. bitwarden.company.com)" )
[string]$domain = $( Read-Host "Enter the domain name for your Bitwarden instance (ex. bitwarden.company.com)" )
echo ""
if ($domain -eq "") {

View File

@ -62,7 +62,7 @@ fi
function install() {
LETS_ENCRYPT="n"
echo -e -n "${CYAN}(!)${NC} Enter the domain name for your bitwarden instance (ex. bitwarden.company.com): "
echo -e -n "${CYAN}(!)${NC} Enter the domain name for your Bitwarden instance (ex. bitwarden.company.com): "
read DOMAIN
echo ""