diff --git a/setup/mods.available/connect-nextcloud-to-miab.sh b/setup/mods.available/connect-nextcloud-to-miab.sh index 56ce45f0..52998f59 100755 --- a/setup/mods.available/connect-nextcloud-to-miab.sh +++ b/setup/mods.available/connect-nextcloud-to-miab.sh @@ -54,6 +54,29 @@ die_with_code() { exit $code } +exec_no_output() { + # This function hides the output of a command unless the command + # fails + local of=$(mktemp) + "$@" &> "$of" + local code=$? + + if [ $code -ne 0 ]; then + echo "" 1>&2 + echo "FAILED: $@" 1>&2 + echo "-----------------------------------------" 1>&2 + echo "Return code: $code" 1>&2 + echo "Output:" 1>&2 + cat "$of" 1>&2 + echo "-----------------------------------------" 1>&2 + fi + + # Remove temporary file. + rm -f "$of" + [ $code -ne 0 ] && return 1 + return 0 +} + usage() { cat <