mirror of
https://github.com/bitwarden/server.git
synced 2025-04-06 05:28:15 -05:00
capitalize Bitwarden
This commit is contained in:
parent
c96ab26053
commit
850000ab26
@ -60,13 +60,13 @@ function Download-Run-File {
|
|||||||
|
|
||||||
function Check-Output-Dir-Exists {
|
function Check-Output-Dir-Exists {
|
||||||
if (!(Test-Path -Path $output)) {
|
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 {
|
function Check-Output-Dir-Not-Exists {
|
||||||
if (Test-Path -Path $output) {
|
if (Test-Path -Path $output) {
|
||||||
throw "Looks like bitwarden is already installed at $output."
|
throw "Looks like Bitwarden is already installed at $output."
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -60,7 +60,7 @@ function downloadRunFile() {
|
|||||||
function checkOutputDirExists() {
|
function checkOutputDirExists() {
|
||||||
if [ ! -d "$OUTPUT" ]
|
if [ ! -d "$OUTPUT" ]
|
||||||
then
|
then
|
||||||
echo "Cannot find a bitwarden installation at $OUTPUT."
|
echo "Cannot find a Bitwarden installation at $OUTPUT."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
@ -68,7 +68,7 @@ function checkOutputDirExists() {
|
|||||||
function checkOutputDirNotExists() {
|
function checkOutputDirNotExists() {
|
||||||
if [ -d "$OUTPUT" ]
|
if [ -d "$OUTPUT" ]
|
||||||
then
|
then
|
||||||
echo "Looks like bitwarden is already installed at $OUTPUT."
|
echo "Looks like Bitwarden is already installed at $OUTPUT."
|
||||||
exit 1
|
exit 1
|
||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
@ -20,7 +20,7 @@ $dockerDir = "${outputDir}\docker"
|
|||||||
function Install() {
|
function Install() {
|
||||||
[string]$letsEncrypt = "n"
|
[string]$letsEncrypt = "n"
|
||||||
Write-Host "(!) " -f cyan -nonewline
|
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 ""
|
echo ""
|
||||||
|
|
||||||
if ($domain -eq "") {
|
if ($domain -eq "") {
|
||||||
|
@ -62,7 +62,7 @@ fi
|
|||||||
|
|
||||||
function install() {
|
function install() {
|
||||||
LETS_ENCRYPT="n"
|
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
|
read DOMAIN
|
||||||
echo ""
|
echo ""
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user