[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
01/10: Fix broken links to builds
From: |
Christopher Baines |
Subject: |
01/10: Fix broken links to builds |
Date: |
Wed, 21 Oct 2020 15:50:30 -0400 (EDT) |
cbaines pushed a commit to branch master
in repository data-service.
commit b5b89b3645e0868aa225926cff66602626b7a145
Author: Christopher Baines <mail@cbaines.net>
AuthorDate: Wed Oct 21 18:38:29 2020 +0100
Fix broken links to builds
---
guix-data-service/web/html-utils.scm | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
diff --git a/guix-data-service/web/html-utils.scm
b/guix-data-service/web/html-utils.scm
index 5fa1ad4..660fcd3 100644
--- a/guix-data-service/web/html-utils.scm
+++ b/guix-data-service/web/html-utils.scm
@@ -70,7 +70,8 @@
value))
(define (build-url build-server-id build-server-build-id derivation-file-name)
- (if (string? build-server-build-id)
+ (if (and (string? build-server-build-id)
+ (not (string-null? build-server-build-id)))
(simple-format
#f "/build-server/~A/build?build_server_build_id=~A"
build-server-id
- branch master updated (971a474 -> 63fc191), Christopher Baines, 2020/10/21
- 02/10: Cleanup scheduled and started builds with "0" timestamps, Christopher Baines, 2020/10/21
- 01/10: Fix broken links to builds,
Christopher Baines <=
- 03/10: Add a view build link on the build page, Christopher Baines, 2020/10/21
- 04/10: Regenerate the latest_build_status table, Christopher Baines, 2020/10/21
- 05/10: Use the status for ordering, as well as timestamp, Christopher Baines, 2020/10/21
- 07/10: Fix rendering of the /builds page, Christopher Baines, 2020/10/21
- 06/10: Limit the builds displayed on the /builds page, Christopher Baines, 2020/10/21
- 10/10: Sort the pending builds by timestamp, Christopher Baines, 2020/10/21
- 08/10: Increase the limit on pending builds to query, Christopher Baines, 2020/10/21
- 09/10: Update insert-new-latest-status-entries, Christopher Baines, 2020/10/21