We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 578debf commit 89bf7a1Copy full SHA for 89bf7a1
1 file changed
entrypoint.sh
@@ -14,8 +14,12 @@ if [ -z "${BW_HOST:-}" ]; then
14
exit 2
15
fi
16
17
+# Ensure we are logged out before changing server config to avoid:
18
+# "Logout required before server config update."
19
+bw logout >/dev/null 2>&1 || true
20
+
21
# Point CLI to the desired server (US/EU/self-hosted)
-bw config server "${BW_HOST}"
22
+bw config server "${BW_HOST}" >/dev/null 2>&1
23
24
login_with_apikey() {
25
echo "Using API key to log in"
0 commit comments