forked from ss/sovereign-stack
8 lines
153 B
Bash
8 lines
153 B
Bash
#!/bin/bash
|
|
|
|
if [ -z "$DOMAIN_NAME" ]; then
|
|
echo "ERROR: DOMAIN_NAME not defined.".
|
|
exit 1
|
|
fi
|
|
|
|
/sovereign-stack/deploy.sh --domain="$DOMAIN_NAME" |