11 lines
175 B
Bash
11 lines
175 B
Bash
#!/bin/bash
|
|
|
|
if ! python3 prepare.py; then
|
|
echo "Error running prepare.py" >&2
|
|
exit 1
|
|
fi
|
|
|
|
if ! nginx -s reload; then
|
|
echo "Error reloading nginx" >&2
|
|
exit 1
|
|
fi |