diff --git a/scripts/bitwarden.ps1 b/scripts/bitwarden.ps1 index 50114b843b..3ba22796b9 100644 --- a/scripts/bitwarden.ps1 +++ b/scripts/bitwarden.ps1 @@ -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." } } diff --git a/scripts/bitwarden.sh b/scripts/bitwarden.sh index 064c668d36..51e4ac40bb 100755 --- a/scripts/bitwarden.sh +++ b/scripts/bitwarden.sh @@ -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 } diff --git a/scripts/run.ps1 b/scripts/run.ps1 index 82d36d00de..fea5ecbb47 100644 --- a/scripts/run.ps1 +++ b/scripts/run.ps1 @@ -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 "") { diff --git a/scripts/run.sh b/scripts/run.sh index d15918b52d..f83414b028 100644 --- a/scripts/run.sh +++ b/scripts/run.sh @@ -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 ""