CI: Make info() variable local

Make the variable in the `info()` function a `local` one.

Signed-off-by: James O. D. Hunt <james.o.hunt@intel.com>
This commit is contained in:
James O. D. Hunt 2018-10-22 09:29:02 +01:00
parent 7dba230a1c
commit f4351e4324

View File

@ -8,7 +8,7 @@ set -e
info()
{
msg="$*"
local msg="$*"
echo "INFO: $msg"
}