From 7ce412fbbff6e62afab004c0ed6d10f43bd809b4 Mon Sep 17 00:00:00 2001 From: Magnus Holm Date: Thu, 9 Feb 2012 14:48:01 +0100 Subject: [PATCH] cpanm outputs stuff at stderr --- bin/compile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/compile b/bin/compile index 9295268..a34ad46 100755 --- a/bin/compile +++ b/bin/compile @@ -29,7 +29,7 @@ if [ -f $BUILD_DIR/Makefile.PL ]; then CPANM="perl -S $(which cpanm) -l $CACHE_DEPS" mkdir -p "$CACHE_DIR" - $CPANM --notest --installdeps $BUILD_DIR | indent + $CPANM --notest --installdeps $BUILD_DIR 2>&1 | indent cp -R "$CACHE_DEPS" "$VENDOR_DEPS"