1
0
mirror of https://github.com/OpenNebula/one.git synced 2025-03-22 18:50:08 +03:00

F #4089: Fix docker image size (#4544)

This commit is contained in:
Christian González 2020-04-16 19:26:22 +02:00 committed by GitHub
parent b9047d25c5
commit 8c8eddab04
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -259,7 +259,7 @@ function fs_size {
kvp=( ${p/=/ } );
if [ ${kvp[0]} == 'size' ]; then
SIZE=$((${kvp[1]} * 1024));
SIZE=$((${kvp[1]} * 1024 * 1024));
error=0
break
fi