diff options
Diffstat (limited to 'client/engine/FileSystem.lib')
-rwxr-xr-x | client/engine/FileSystem.lib | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/client/engine/FileSystem.lib b/client/engine/FileSystem.lib index 5cc7cef8..37e13420 100755 --- a/client/engine/FileSystem.lib +++ b/client/engine/FileSystem.lib @@ -417,10 +417,7 @@ case "$ID" in ;; *) # Detectar sistema de ficheros. ogMount $1 $2 &>/dev/null - if ogIsFormated $1 $2 2>/dev/null; then - TYPE=$(mount | \ - awk -v p=$PART '{ if ($1==p) { print toupper($5); } }') - fi + TYPE=$(mount | awk -v p=$PART '{ if ($1==p) { print toupper($5); } }') # Detectar otros sistemas de archivos (FUSE, VFAT). case "$TYPE" in FUSEBLK) TYPE="NTFS" ;; # usar "file -Ls" para detectar |