Skip to content

Commit bbd2e3e

Browse files
authored
Fix bin/setup-ssl doesn't work for multiple domains #1257 (#1300)
1 parent f0c3c6d commit bbd2e3e

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compose/bin/setup-ssl

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/usr/bin/env bash
2-
[ -z "$1" ] && echo "Please specify a domain (ex. mydomain.test)" && exit
2+
[ $# -eq 0 ] && echo "Please specify at least one domain (ex. mydomain.test)" && exit
33

44
# Generate certificate authority if not already setup
55
if ! bin/docker-compose exec -T -u root app cat /root/.local/share/mkcert/rootCA.pem | grep -q 'BEGIN CERTIFICATE'; then

0 commit comments

Comments
 (0)