From e0aa59f763fcf0414acbc5e63274697430004f53 Mon Sep 17 00:00:00 2001 From: Colin Watson Date: Mon, 15 May 2006 15:51:11 +0000 Subject: [PATCH] cope with running in a bzr checkout --- baz-update-config | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/baz-update-config b/baz-update-config index 6eadf04..5949047 100755 --- a/baz-update-config +++ b/baz-update-config @@ -12,7 +12,7 @@ NEWLINE=' IFS_SAVE="$IFS" IFS="$NEWLINE" -for line in $(baz cat-config "$1"); do +for line in $(baz cat-config "$1" 2>/dev/null || cat "$1"); do IFS="$IFS_SAVE" set -- $line DIR="$1" -- 2.30.2