~ salmonella-environment-setup (master) c9f8833347d685144699ecd6ed51fb165b335aa3


commit c9f8833347d685144699ecd6ed51fb165b335aa3
Author:     Mario Domenech Goulart <mario@parenteses.org>
AuthorDate: Wed Jul 21 20:26:07 2021 +0200
Commit:     Mario Domenech Goulart <mario@parenteses.org>
CommitDate: Wed Jul 21 20:26:07 2021 +0200

    conf/common/chicken-5.scm: skip inotify on non-Linux systems

diff --git a/conf/common/chicken-5.scm b/conf/common/chicken-5.scm
index 3b7580e..12c9fc4 100644
--- a/conf/common/chicken-5.scm
+++ b/conf/common/chicken-5.scm
@@ -21,8 +21,8 @@
                 "salmonella"))
 
 (case (software-version)
-  ((openbsd) (skip-eggs '()))
-  ((freebsd) (skip-eggs '(pledge unveil)))
+  ((openbsd) (skip-eggs '(inotify)))
+  ((freebsd) (skip-eggs '(inotify pledge unveil)))
   ((linux) (skip-eggs '(pledge unveil))))
 
 ;;; Uncomment the lines below to quickly test the workflow (skip
Trap