Skip to content
Snippets Groups Projects
Commit 315b1b87 authored by André Anjos's avatar André Anjos :speech_balloon:
Browse files

Don't return in a function

parent ca33177a
No related branches found
No related tags found
No related merge requests found
......@@ -30,9 +30,9 @@ is_master() {
fi
fi
if [[ "${retval}" == "master" ]]; then
return "true"
echo "true"
else
return "false"
echo "false"
fi
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment