Merge pull request #5 from gcala/patch-1

fix typo
This commit is contained in:
Dennis ten Hoove 2024-08-10 04:37:24 +02:00 committed by GitHub
commit c076e966cf
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -113,7 +113,7 @@ if [[ $type != 'migration' ]]; then
declare root_storage_available=($(df --output=avail /))
root_storage_available=${root_storage_available[1]}
declare var_storage_available=($(df --output=avail /var/tmp))
var_storage_available=${root_storage_available[1]}
var_storage_available=${var_storage_available[1]}
if [[ $root_storage_available -lt $minimum_available_root_storage ]]; then
printf 'Not enough storage available on root to export image\n'