From bd094de859887e9daad09a5e044fbd5042d399bc Mon Sep 17 00:00:00 2001 From: Junichi Uekawa Date: Tue, 27 Mar 2007 23:01:37 +0900 Subject: error message goes to &2 --- pbuilder-modules | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'pbuilder-modules') diff --git a/pbuilder-modules b/pbuilder-modules index 309bf8e..9e39b81 100644 --- a/pbuilder-modules +++ b/pbuilder-modules @@ -344,16 +344,16 @@ function extractbuildplace () { cleanbuildplace echo "Building the build Environment" if ! mkdir -p "$BUILDPLACE"; then - echo "E: failed to build the directory to chroot" + echo "E: failed to build the directory to chroot" >&2 exit 1 fi echo " -> extracting base tarball [${BASETGZ}]" if [ ! -f "$BASETGZ" ]; then - echo "E: failed to find $BASETGZ, have you done to create your base tarball yet?" + echo "E: failed to find $BASETGZ, have you done to create your base tarball yet?" >&2 exit 1 fi if ! (cd "$BUILDPLACE" && tar xfzp "$BASETGZ"); then - echo "E: failed to extract $BASETGZ to $BUILDPLACE" + echo "E: failed to extract $BASETGZ to $BUILDPLACE" >&2 exit 1 fi echo " -> creating local configuration" -- cgit v1.2.3