summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorrsiddharth <s@ricketyspace.net>2017-03-14 01:47:47 +0000
committerrsiddharth <s@ricketyspace.net>2017-03-14 01:47:47 +0000
commit0b57747f8434f846427db2a8d8d8a33a04bcc153 (patch)
tree3faed8a583e0f3896130c2172fea356fa37f7cb1
parent2815b452f9af7395e8e2178ddf8362c93bdce4ad (diff)
git-difme.scm: Update `difme-stage`.
* git-difme.scm (difme-stage): Update function.
-rw-r--r--git-difme.scm2
1 files changed, 1 insertions, 1 deletions
diff --git a/git-difme.scm b/git-difme.scm
index 13fbe9c..8014e09 100644
--- a/git-difme.scm
+++ b/git-difme.scm
@@ -88,7 +88,7 @@ returned."
(define (difme-stage repo file)
"stage FILE in REPO."
- (let ((cmd (string-append "git add " file)))
+(let ((cmd (string-append "git add " (format #f "'~a'" file))))
(with-directory-excursion repo
(difme-exec cmd))))