summaryrefslogtreecommitdiff
path: root/tissue
diff options
context:
space:
mode:
Diffstat (limited to 'tissue')
-rw-r--r--tissue/git.scm15
1 files changed, 4 insertions, 11 deletions
diff --git a/tissue/git.scm b/tissue/git.scm
index 9e2bf59..3fc8df1 100644
--- a/tissue/git.scm
+++ b/tissue/git.scm
@@ -47,21 +47,14 @@
(proc (diff->pointer diff) %null-pointer)
diff)))
-(define (git-top-level)
- "Return the top-level directory of the current git repository."
- (let loop ((curdir (getcwd)))
- (cond
- ((file-exists? (string-append curdir "/.git"))
- curdir)
- ((string=? curdir "/")
- (error "No git top level found"))
- (else
- (loop (dirname curdir))))))
-
(define (current-git-repository)
"Return the current git repository."
(repository-open-ext (getcwd) (list)))
+(define (git-top-level)
+ "Return the top-level directory of the current git repository."
+ (dirname (repository-directory (current-git-repository))))
+
(define (head-tree repository)
"Return tree of HEAD in REPOSITORY."
(commit-tree