Skip to content

Commit 2e9512f

Browse files
committed
Fix a small bug in if condition, thanks to @HueyGeek!
1 parent cd9cb2e commit 2e9512f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

bin/v-update-user-counters

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -102,7 +102,7 @@ for user in $user_list; do
102102

103103
# Checking web system
104104
U_WEB_DOMAINS=0
105-
if [ -f $USER_DATA/mail.conf ]; then
105+
if [ -f $USER_DATA/web.conf ]; then
106106
for domain_str in $(cat $USER_DATA/web.conf) ;do
107107
eval $domain_str
108108
U_DISK_WEB=$((U_DISK_WEB + U_DISK))

0 commit comments

Comments
 (0)