From d57f988205dbc49e3e546508abe944c7c1de0a78 Mon Sep 17 00:00:00 2001 From: Erik Alexandre Pucci <eap08@c3sl.ufpr.br> Date: Thu, 16 Jun 2011 11:57:32 -0300 Subject: [PATCH] build-update-package: Added missing "\" in the end of two printf(1)'s Signed-off-by: Erik Alexandre Pucci <eap08@c3sl.ufpr.br> Acked-by: Adriano da Luz <al08@c3sl.ufpr.br> Acked-by: Danilo Kiyoshi Simizu Yorinori <danilok@c3sl.ufpr.br> --- build-update-package | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/build-update-package b/build-update-package index de499aa..ae597e4 100755 --- a/build-update-package +++ b/build-update-package @@ -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 -- GitLab