Merge pull request #5725 from tstromberg/badgerbadgerbadger2

CI: Use print preserve whitespace between interface names
pull/5731/head
Thomas Strömberg 2019-10-24 14:53:31 -07:00 committed by GitHub
commit 8f75f8a843
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -165,7 +165,7 @@ if type -P vboxmanage; then
vboxmanage unregistervm "${guid}" || true
done
ifaces=$(vboxmanage list hostonlyifs | grep -E "^Name:" | awk '{ printf $2 }')
ifaces=$(vboxmanage list hostonlyifs | grep -E "^Name:" | awk '{ print $2 }')
for if in $ifaces; do
vboxmanage hostonlyif remove "${if}" || true
done