From b476f39f67bfdbad541d149d13a4f6fb0295fe47 Mon Sep 17 00:00:00 2001 From: Sam Tobin-Hochstadt Date: Sat, 9 May 2020 15:55:05 -0400 Subject: [PATCH] Suffix distributions properly --- .github/workflows/site-small.rkt | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/site-small.rkt b/.github/workflows/site-small.rkt index d23f38d1d4..6227f86702 100644 --- a/.github/workflows/site-small.rkt +++ b/.github/workflows/site-small.rkt @@ -47,7 +47,7 @@ #:repo source-dir #:pull? #f #:variant 'cs - #:dist-suffix "cs" + #:dist-suffix (if (null? pkgs) "min-cs" "cs") #:versionless? #t #:pkgs pkgs #:log-file (convert-log-name name) @@ -56,6 +56,7 @@ (define (bc-machine #:name name #:pkgs [pkgs distro-content]) (machine #:versionless? #t #:pkgs pkgs + #:dist-suffix (if (null? pkgs) "min" "") #:log-file (convert-log-name name) #:name name))