From ccdbd4fbd023e4aec6f26fad1e716746ecd88bd9 Mon Sep 17 00:00:00 2001 From: June 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(-) (limited to 'bin/up.sh') 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