diff options
author | albertogp <albertogp@uma.es> | 2014-05-30 06:08:57 +0000 |
---|---|---|
committer | albertogp <albertogp@uma.es> | 2014-05-30 06:08:57 +0000 |
commit | d2f8c5a6b8da3b0f146bd723d4d7c176dc7e3e46 (patch) | |
tree | 2f7233383797511fd0f534065f24d21e0128254c /client/engine/Image.lib | |
parent | b0a4c8c7a475c18dab3ce6d4860d6a885209c803 (diff) |
#541
Integrando cambios en version 1.0
corrección de error en condición if
git-svn-id: https://opengnsys.es/svn/branches/version1.0@4291 a21b9725-9963-47de-94b9-378ad31fedc9
Diffstat (limited to 'client/engine/Image.lib')
-rwxr-xr-x | client/engine/Image.lib | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/engine/Image.lib b/client/engine/Image.lib index f66ab900..c30de47d 100755 --- a/client/engine/Image.lib +++ b/client/engine/Image.lib @@ -677,7 +677,7 @@ then then TOOLS=PARTCLONE FS=$(echo $PARTCLONEINFO | awk '{gsub(/\: /,"\n"); print toupper($8);}') - if [ "$FS" == "HFS" || "$FS" == "HFSPLUS" || "$FS" == "FAT32" ]; then + if [[ "$FS" == "HFS" || "$FS" == "HFSPLUS" || "$FS" == "FAT32" ]]; then FSPLUS=$(echo $PARTCLONEINFO | awk '{gsub(/\: /,"\n"); print toupper($9);}') echo $PARTCLONEINFO | grep GB > /dev/null && SIZEFACTOR=1000000 || SIZEFACTOR=1024 if [ "$FSPLUS" -eq "PLUS" ]; then |