From 12c434eb9254c5166336d8b1c55f2e697e8967e9 Mon Sep 17 00:00:00 2001 From: David Galloway Date: Thu, 28 Sep 2017 14:23:56 -0400 Subject: [PATCH] scripts: Fix typo Signed-off-by: David Galloway --- scripts/build_utils.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scripts/build_utils.sh b/scripts/build_utils.sh index bf88c335b..42984815b 100644 --- a/scripts/build_utils.sh +++ b/scripts/build_utils.sh @@ -442,7 +442,7 @@ restart_libvirt_services() { # Function to update vagrant boxes on static libvirt slaves used for ceph-ansible and ceph-docker testing update_vagrant_boxes() { - outdated_boxes=`vagrant box outdated --global | grep 'is outdated' | awk '{ print $2 }' | | tr -d "'"` + outdated_boxes=`vagrant box outdated --global | grep 'is outdated' | awk '{ print $2 }' | tr -d "'"` if [ -n "$outdated_boxes" ]; then for box in $outdated_boxes; do vagrant box update --box $box -- 2.47.3