Skip to content
Snippets Groups Projects
Commit 84a4fff2 authored by Peter van 't Hof's avatar Peter van 't Hof
Browse files

fixed typo

parent 7b9b7162
No related branches found
No related tags found
1 merge request!61Switch to structs
......@@ -30,7 +30,7 @@ task CheckFileMD5 {
command {
set -e -o pipefail
MD5SUM=$(md5sum ~{file} | cut -d ' ' -f 1)
MD5SUM_CORRECT=$(cat ~{md5} | | grep ~{basename(file)} | cut -d ' ' -f 1)
MD5SUM_CORRECT=$(cat ~{md5} | grep ~{basename(file)} | cut -d ' ' -f 1)
[ $MD5SUM = $MD5SUM_CORRECT ]
}
}
......
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