diff options
author | Christopher Baines <mail@cbaines.net> | 2020-12-22 18:28:47 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2020-12-22 18:29:56 +0000 |
commit | 551efc525fd79380478650b0f6782d29fd4611b4 (patch) | |
tree | d5c94134519555dad204c60b07b925f1f6c42386 | |
parent | ad2942382f9c45d052a42625c253d5e661bafbd5 (diff) | |
download | build-coordinator-551efc525fd79380478650b0f6782d29fd4611b4.tar build-coordinator-551efc525fd79380478650b0f6782d29fd4611b4.tar.gz |
Fix another number -> boolean change
-rw-r--r-- | guix-build-coordinator/build-allocator.scm | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/guix-build-coordinator/build-allocator.scm b/guix-build-coordinator/build-allocator.scm index dbf09d0..309f6dd 100644 --- a/guix-build-coordinator/build-allocator.scm +++ b/guix-build-coordinator/build-allocator.scm @@ -292,7 +292,7 @@ (begin (for-each (lambda (build) - (when (and (eq? 0 (assq-ref build 'processed)) + (when (and (not (assq-ref build 'processed)) ;; The build might not be included ;; in tis allocation, so skip it ;; if it isn't |