Skip to content
Snippets Groups Projects
Commit d57f9882 authored by Erik Alexandre Pucci's avatar Erik Alexandre Pucci
Browse files

build-update-package: Added missing "\" in the end of two printf(1)'s

parent c5c157e9
No related branches found
No related tags found
No related merge requests found
......@@ -72,15 +72,15 @@ cd "${AGENTDIR}"
printf "Checking SEED2-run files integrity... "
if ! test -d "${MD5DIR}"; then
printf "ERROR (5): There is no MD5 directory. Please, run create %b"
printf "ERROR (5): There is no MD5 directory. Please, run create %b" \
"integrity.\n"
exit 5
fi
for FILE in $(find "${MD5DIR}" -type f); do
if ! check_file_integrity "${FILE}"; then
printf "ERROR (3): File(s) corrupted. Please, re-create integrity or %b"
"rebuild the agent files.\n"
printf "ERROR (3): File(s) corrupted. Please, re-create integrity %b" \
"or rebuild the agent files.\n"
exit 3
fi
done
......
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