generic-poky/meta/recipes-devtools/guilt/files/guilt-init.patch

26 lines
681 B
Diff

guilt: allow previously initialized branches to be re-initialized
Upstream-Status: Inappropriate [oe-specific]
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
---
guilt-init | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
--- a/guilt-init
+++ b/guilt-init
@@ -20,9 +20,9 @@ while case $# in 0) break ;; esac; do
shift
done
-if [ -d "$GUILT_DIR/$branch" ]; then
- die "Branch $branch appears to be already initialized (GIT_DIR=$GIT_DIR)"
-fi
+# if [ -d "$GUILT_DIR/$branch" ]; then
+# die "Branch $branch appears to be already initialized (GIT_DIR=$GIT_DIR)"
+# fi
[ ! -d "$GUILT_DIR" ] && mkdir "$GUILT_DIR"
mkdir -p "$GUILT_DIR/$branch"