From 7d6360f27d3c0c5f8ce5918c8f90ebf2aff8cdcf Mon Sep 17 00:00:00 2001 From: Hans Ulrich Niedermann Date: Fri, 2 Nov 2007 21:35:51 +0100 Subject: Removed two silent error aborts. --- src/git-amb | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/src/git-amb b/src/git-amb index cd4bf21..433667a 100755 --- a/src/git-amb +++ b/src/git-amb @@ -46,7 +46,6 @@ amb_detect_configure() { done test -z "${configure_ac}" && die "configure.{ac,in} not found" configure="$top_srcdir/configure" - test -x "$configure" } cond_cat_path() { @@ -70,7 +69,7 @@ amb_init() { else die "Invalid branch \"$1\" given." fi - test "x.git" = "x$(basename "$GIT_DIR")" + test "x.git" = "x$(basename "$GIT_DIR")" || die "GIT_DIR=$GIT_DIR is not foo/.git" top_srcdir="$(cd_to_toplevel && pwd)" tmp="$(git-config amb.builddir)" || tmp="$GIT_DIR/amb/build" -- cgit