We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eac6b9d commit 9557d77Copy full SHA for 9557d77
install.sh
@@ -194,6 +194,9 @@ configure_server_and_register() {
194
fi
195
196
197
+ # Trim trailing slash if present
198
+ AI_SERVER_URL="${AI_SERVER_URL%/}"
199
+
200
DEFAULT_AUTH=${AI_SERVER_API_KEY:-$AI_SERVER_AUTH_SECRET}
201
SERVER_AUTH=$(get_input "Enter your AI Server authentication credentials." "$DEFAULT_AUTH" "true" "Enter AI Server Auth Secret")
202
@@ -222,6 +225,9 @@ configure_server_and_register() {
222
225
223
226
224
227
228
229
+ AGENT_URL="${AGENT_URL%/}"
230
231
AGENT_PASSWORD=$(get_input "Create a password to secure your ComfyUI Agent." "" "true" "Enter a secure password")
232
233
if [ -z "$AGENT_PASSWORD" ]; then
0 commit comments