Remove typo from the xorriso_version code

This commit is contained in:
Steve McIntyre 2014-04-09 10:42:37 +01:00
parent fe0f8acfd3
commit 356b050c12
1 changed files with 1 additions and 1 deletions

View File

@ -96,7 +96,7 @@ calc_boot_size() {
# Grab the xorriso version and turn it into a number we can use # Grab the xorriso version and turn it into a number we can use
xorriso_version() { xorriso_version() {
$MKISOFS --version 2>&1 | awk ' $MKISOFS --version 2>&1 | awk '
`/^xorriso version/ { /^xorriso version/ {
split($4, ver, ".") split($4, ver, ".")
print ver[1]*10000+ver[2]*100+ver[3] print ver[1]*10000+ver[2]*100+ver[3]
}' }'