From 8daeba069e3ea7d22d2f925ece89595fd1b08e43 Mon Sep 17 00:00:00 2001 From: "C. McEnroe" Date: Fri, 24 Jan 2020 23:31:59 -0500 Subject: Capture standard error and allow failure in up -c --- bin/up.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bin/up.sh b/bin/up.sh index 1b44f9b8..0ff9e69b 100644 --- a/bin/up.sh +++ b/bin/up.sh @@ -28,7 +28,7 @@ uploadText() { uploadCommand() { temp echo "$ $*" > "${temp}/exec.txt" - "$@" >> "${temp}/exec.txt" + "$@" >> "${temp}/exec.txt" 2>&1 || true upload "${temp}/exec.txt" } -- cgit 1.4.1