mirror of
https://git.in.rschanz.org/ryan77627/guix.git
synced 2024-12-26 22:38:07 -05:00
gnu: cowsay: Run tests after install.
* gnu/packages/games.scm (cowsay)[arguments]: Delete 'check phase, add custom 'check phase after install.
This commit is contained in:
parent
3bf94bc8bc
commit
1ee3079d78
1 changed files with 2 additions and 1 deletions
|
@ -267,7 +267,8 @@ (define-public cowsay
|
|||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(zero? (system* "sh" "install.sh"
|
||||
(assoc-ref outputs "out")))))
|
||||
(replace 'check
|
||||
(delete 'check)
|
||||
(add-after 'install 'check
|
||||
(lambda* (#:key outputs #:allow-other-keys)
|
||||
(zero? (system* (string-append (assoc-ref outputs "out")
|
||||
"/bin/cowsay")
|
||||
|
|
Loading…
Reference in a new issue