Remove typo from the xorriso_version code

This commit is contained in:
Steve McIntyre 2014-04-09 10:33:47 +01:00
parent 348f4b31d1
commit 7a819f9120
2 changed files with 2 additions and 2 deletions

View File

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

View File

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