gnu: gitolite: Update phase style.
* gnu/packages/version-control.scm (gitolite): Substitute INVOKE for SYSTEM* and end phases with #t.master
parent
7730b7179c
commit
92793c7b02
|
@ -958,7 +958,8 @@ also walk each side of a merge and test those changes individually.")
|
||||||
;; This works because gitolite-shell is in the PATH.
|
;; This works because gitolite-shell is in the PATH.
|
||||||
(substitute* "src/triggers/post-compile/ssh-authkeys"
|
(substitute* "src/triggers/post-compile/ssh-authkeys"
|
||||||
(("\\$glshell \\$user")
|
(("\\$glshell \\$user")
|
||||||
"gitolite-shell $user")))))
|
"gitolite-shell $user"))
|
||||||
|
#t)))
|
||||||
(replace 'install
|
(replace 'install
|
||||||
(lambda* (#:key outputs #:allow-other-keys)
|
(lambda* (#:key outputs #:allow-other-keys)
|
||||||
(let* ((output (assoc-ref outputs "out"))
|
(let* ((output (assoc-ref outputs "out"))
|
||||||
|
@ -966,7 +967,7 @@ also walk each side of a merge and test those changes individually.")
|
||||||
(bindir (string-append output "/bin")))
|
(bindir (string-append output "/bin")))
|
||||||
(mkdir-p sharedir)
|
(mkdir-p sharedir)
|
||||||
(mkdir-p bindir)
|
(mkdir-p bindir)
|
||||||
(system* "./install" "-to" sharedir)
|
(invoke "./install" "-to" sharedir)
|
||||||
;; Create symlinks for executable scripts in /bin.
|
;; Create symlinks for executable scripts in /bin.
|
||||||
(for-each (lambda (script)
|
(for-each (lambda (script)
|
||||||
(symlink (string-append sharedir "/" script)
|
(symlink (string-append sharedir "/" script)
|
||||||
|
|
Reference in New Issue