From ed26ca87473f2279f17ef3b262db87622dd9b9b9 Mon Sep 17 00:00:00 2001 From: Petr Baudis Date: Sun, 3 Aug 2008 03:01:37 +0200 Subject: [PATCH] tg-update.sh: Fix recursive update shell call The sh -i would not have correct stdin, but tg update did not exit with an error status on base-head merge conflicts in the first place. --- tg-update.sh | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tg-update.sh b/tg-update.sh index 03b8f3f..ec14bf6 100644 --- a/tg-update.sh +++ b/tg-update.sh @@ -55,7 +55,7 @@ if [ -s "$depcheck" ]; then # The merge got stuck! Let the user fix it up. info "You are in a subshell. If you abort the merge," info "use \`exit 1\` to abort the recursive update altogether." - if ! sh -i; then + if ! sh -i