Skip to content
Snippets Groups Projects
Unverified Commit 85bd3f5f authored by Rafael Guterres Jeffman's avatar Rafael Guterres Jeffman Committed by GitHub
Browse files

Merge pull request #464 from t-woerner/new_module_fix_covsvan_findings

utils/new_module: Fix covscan findings
parents 8444e896 18c195b0
Branches
Tags
No related merge requests found
......@@ -73,7 +73,7 @@ author=$2
email=$3
year=$(date +"%Y")
if [ -z "$name" -o -z "$author" -o -z "$email" ]; then
if [ -z "$name" ] || [ -z "$author" ] || [ -z "$email" ]; then
[ -z "$name" ] && echo "ERROR: name is not valid"
[ -z "$author" ] && echo "ERROR: author is not valid"
[ -z "$email" ] && echo "ERROR: email is not valid"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment