diff options
author | Mattia Rizzolo <mattia@mapreri.org> | 2015-11-13 11:24:29 +0000 |
---|---|---|
committer | Mattia Rizzolo <mattia@mapreri.org> | 2015-11-15 10:16:22 +0000 |
commit | e2420f46582fb7761d04ed86c2201dd79a857e51 (patch) | |
tree | 4c280b1df30beef695c9a84178aa405f07c21cce /pdebuild | |
parent | fcee0334be27ea4ec4a5fdc3f940e015e60defe9 (diff) | |
download | pbuilder-e2420f46582fb7761d04ed86c2201dd79a857e51.tar pbuilder-e2420f46582fb7761d04ed86c2201dd79a857e51.tar.gz |
use log.e() instead of log()
Diffstat (limited to 'pdebuild')
-rw-r--r-- | pdebuild | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -25,7 +25,7 @@ while ! test -d ./debian -o "$(pwd)" = "/" ; do done if test ! -d ./debian; then - log "E: Cannot find ./debian dir" + log.e "Cannot find ./debian dir" exit 1 fi; @@ -69,7 +69,7 @@ if [ "${USE_PDEBUILD_INTERNAL}" = 'yes' ]; then conditional_cp_a "${files}" "${BUILDRESULT}" || true done else - log "E: BUILDRESULT=[$BUILDRESULT] is not a directory." + log.e "BUILDRESULT=[$BUILDRESULT] is not a directory." exit 1 fi else @@ -101,7 +101,7 @@ if [ "${AUTO_DEBSIGN}" = "yes" ]; then elif [ -f "${BUILDRESULT}/${SOURCE_CHANGES}" ]; then DEBSIGN_PARAM[2]="${BUILDRESULT}/${SOURCE_CHANGES}" else - log "E: the .changes file can't be found, debsing not done" + log.e "the .changes file can't be found, debsing not done" exit 1 fi debsign "${DEBSIGN_PARAM[@]}" |