diff options
author | Alexander_Kabui | 2024-08-07 17:51:45 +0300 |
---|---|---|
committer | Munyoki Kilyungi | 2024-08-09 11:55:16 +0300 |
commit | 5298ad1f8b498fbbc82ccfae7b1305458bbd0876 (patch) | |
tree | 4bf28cd8a9dd74d0d67ecc907ca1c6df7bd83ed1 /web/view | |
parent | 12b3d8158b807609f3f571cbf0603bb067878e9b (diff) | |
download | gn-guile-5298ad1f8b498fbbc82ccfae7b1305458bbd0876.tar.gz |
Fix naming for predicates.
Diffstat (limited to 'web/view')
-rw-r--r-- | web/view/markdown.scm | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/web/view/markdown.scm b/web/view/markdown.scm index e6d595d..5f3474c 100644 --- a/web/view/markdown.scm +++ b/web/view/markdown.scm @@ -69,7 +69,7 @@ (define (git-invoke repo-path . args) (apply system* "git" "-C" repo-path args)) -(define (is-repo? repo-path) +(define (git-repository? repo-path) (let ((data (git-invoke repo-path "rev-parse"))) (zero? data))) @@ -83,7 +83,7 @@ (unless (string=? prev-commit (get-latest-commit-sha1 repo)) (throw 'system-error (format #f "Commits do no match.Please pull in latest changes for current * ~a * and prev * ~a * " (get-latest-commit-sha1 repo) prev-commit))) - (if (is-repo? repo) + (if (git-repository? repo) (match (file-exists? (string-append repo "/" file-path)) (#t (with-output-to-file (string-append repo "/" file-path) |