diff options
author | June McEnroe <june@causal.agency> | 2020-01-24 23:31:59 -0500 |
---|---|---|
committer | June McEnroe <june@causal.agency> | 2020-01-24 23:31:59 -0500 |
commit | ccdbd4fbd023e4aec6f26fad1e716746ecd88bd9 (patch) | |
tree | d465a44dec2add3f24902eeaa06182df56e18b1c /bin | |
parent | Add Love Beyond Body, Space & Time (diff) | |
download | src-ccdbd4fbd023e4aec6f26fad1e716746ecd88bd9.tar.gz src-ccdbd4fbd023e4aec6f26fad1e716746ecd88bd9.zip |
Capture standard error and allow failure in up -c
Diffstat (limited to 'bin')
-rw-r--r-- | bin/up.sh | 2 |
1 files changed, 1 insertions, 1 deletions
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" } |