aboutsummaryrefslogtreecommitdiff
path: root/module/git.scm
diff options
context:
space:
mode:
authorHugo Hörnquist <hugo@lysator.liu.se>2020-04-03 22:18:57 +0200
committerHugo Hörnquist <hugo@lysator.liu.se>2020-04-03 22:18:57 +0200
commit2157f206f1a3c367883c8ec9b27741dffcef6c3c (patch)
tree35c8e6781c0f4be3ab9f897b2cdf825d79b01322 /module/git.scm
parentUpdate define-config to hopefully check pre-existing values. (diff)
downloadcalp-2157f206f1a3c367883c8ec9b27741dffcef6c3c.tar.gz
calp-2157f206f1a3c367883c8ec9b27741dffcef6c3c.tar.xz
Add responsivnes, major rework on css.
Primary page layout is now changed from being flexbox based to being grid based. This allows a much simpler complete rearangement of the elements to a tall view for narrow screens. A few other minor changes might also have slipped in.
Diffstat (limited to 'module/git.scm')
-rw-r--r--module/git.scm7
1 files changed, 4 insertions, 3 deletions
diff --git a/module/git.scm b/module/git.scm
index dfb60526..d3de8c5b 100644
--- a/module/git.scm
+++ b/module/git.scm
@@ -5,8 +5,9 @@
:export (get-git-version))
(define (get-git-version)
- (-> "git rev-parse HEAD"
- open-input-pipe
- read-line))
+ (values (-> "git rev-parse HEAD"
+ open-input-pipe read-line)
+ (-> "git rev-parse --short HEAD"
+ open-input-pipe read-line)))