Skip to content

Commit 83d8756

Browse files
fix(startup): wrong condition
1 parent 6afbc5e commit 83d8756

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

scripts/run.sh

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#!/bin/bash
22
set -e
33

4-
if [[ "${UPTIME_KUMA_DB_TYPE}" != 'mariadb' ]]; then
4+
if [[ "${UPTIME_KUMA_DB_TYPE}" == 'mariadb' ]]; then
55
exec node server/server.js
66
else
77
# Restore the database if it does not already exist.

0 commit comments

Comments
 (0)