guix-commits
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[shepherd] branch master updated: maint: Fix typo in manifest.


From: Ludovic Courtès
Subject: [shepherd] branch master updated: maint: Fix typo in manifest.
Date: Sun, 08 Oct 2023 17:54:07 -0400

This is an automated email from the git hooks/post-receive script.

civodul pushed a commit to branch master
in repository shepherd.

The following commit(s) were added to refs/heads/master by this push:
     new d53d783  maint: Fix typo in manifest.
d53d783 is described below

commit d53d78353c4094cd48ccb559af6e59ee0795af48
Author: Ludovic Courtès <ludo@gnu.org>
AuthorDate: Sun Oct 8 23:53:40 2023 +0200

    maint: Fix typo in manifest.
    
    * .guix/manifest.scm (system-test->manifest-entry): Wrap TEST in
    ‘with-parameters’, not its name.
---
 .guix/manifest.scm | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/.guix/manifest.scm b/.guix/manifest.scm
index ec0693b..8cf7bbe 100644
--- a/.guix/manifest.scm
+++ b/.guix/manifest.scm
@@ -97,11 +97,11 @@ TARGET."
   (manifest-entry
     ;; The system test on x86_64 is relatively expensive; run it on x86_64
     ;; only.
-    (name (with-parameters ((%current-system "x86_64-linux")
-                            (%current-target-system #f))
-            (system-test-name test)))
+    (name (system-test-name test))
     (version "0")
-    (item test)))
+    (item (with-parameters ((%current-system "x86_64-linux")
+                            (%current-target-system #f))
+            test))))
 
 (define system-tests
   (manifest



reply via email to

[Prev in Thread] Current Thread [Next in Thread]