Browse Source

Remove condition

Bob Mottram 8 years ago
parent
commit
a537f3f174
1 changed files with 1 additions and 4 deletions
  1. 1
    4
      src/freedombone-app-matrix

+ 1
- 4
src/freedombone-app-matrix View File

506
 
506
 
507
     matrix_nginx
507
     matrix_nginx
508
 
508
 
509
-    if [[ $(add_user_matrix "${MY_USERNAME}" "${MATRIX_PASSWORD}") != "0" ]]; then
510
-        echo $'Failed to add matrix admin user';
511
-        exit 879352
512
-    fi
509
+    add_user_matrix "${MY_USERNAME}" "${MATRIX_PASSWORD}"
513
 
510
 
514
     APP_INSTALLED=1
511
     APP_INSTALLED=1
515
 }
512
 }