Skip to content

Commit

Permalink
fix: syntax error for installBcc test
Browse files Browse the repository at this point in the history
  • Loading branch information
Zachary Bailey committed Apr 24, 2024
1 parent 8598ca7 commit 59143cd
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions vhdbuilder/packer/test/linux-vhd-content-test.sh
Original file line number Diff line number Diff line change
Expand Up @@ -867,13 +867,12 @@ testBccTools () {
fi
done
if [ $result -eq 0 ]; then
exit 0
return 0
else
exit 1
return 1
fi
}


# As we call these tests, we need to bear in mind how the test results are processed by the
# the caller in run-tests.sh. That code uses az vm run-command invoke to run this script
# on a VM. It then looks at stderr to see if any errors were reported. Notably it doesn't
Expand Down

0 comments on commit 59143cd

Please sign in to comment.