Explorar el Código

Remove directory contents if it exists

Bob Mottram hace 8 años
padre
commit
82d353e9d0
Se han modificado 1 ficheros con 3 adiciones y 0 borrados
  1. 3
    0
      src/freedombone-app-matrix

+ 3
- 0
src/freedombone-app-matrix Ver fichero

@@ -531,6 +531,9 @@ function install_identity_server {
531 531
     if [ ! -d $INSTALL_DIR/sydent ]; then
532 532
         mkdir -p $INSTALL_DIR/sydent
533 533
     fi
534
+    if [ -d $INSTALL_DIR/sydent ]; then
535
+        rm -rf $INSTALL_DIR/sydent/*
536
+    fi
534 537
     pip install --upgrade --process-dependency-links . -b $INSTALL_DIR/sydent
535 538
     if [ ! "$?" = "0" ]; then
536 539
         echo $'Failed to install matrix identity server'