File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -988,16 +988,16 @@ is_base_domain_owner(){
988988 parse_object_kv_list " $web "
989989 if [ -z " $ALLOW_USERS " ] || [ " $ALLOW_USERS " != " yes" ]; then
990990 # Don't care if $basedomain all ready exists only if the owner is of the base domain is the current user
991- is_domain_new " " $basedomain ;
991+ check= $( is_domain_new " " $basedomain )
992992 if [ $? -ne 0 ]; then
993- echo " Error: $basedomain belongs to a different user" ;
993+ echo " Error: Unable to add $object . $basedomain belongs to a different user" ;
994994 exit 4;
995995 fi
996996 fi
997997 else
998- is_domain_new " " " $basedomain "
998+ check= $( is_domain_new " " " $basedomain " )
999999 if [ $? -ne 0 ]; then
1000- echo " Error: $basedomain belongs to a different user" ;
1000+ echo " Error: Unable to add $object . $basedomain belongs to a different user" ;
10011001 exit 4;
10021002 fi
10031003 fi
You can’t perform that action at this time.
0 commit comments