dannym pushed a commit to branch wip-installer-2
in repository guix.
commit 404e068187b65d951f751ea763c0240f5944d9d8
Author: John Darrington <[email protected]>
Date: Sun Jan 15 08:02:58 2017 +0100
installer: Correct bug detecting a wireless interface.
* gnu/system/installer/network.scm (interfaces): Fix typo.
---
gnu/system/installer/network.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/gnu/system/installer/network.scm b/gnu/system/installer/network.scm
index 617e8a2..9eeefa0 100644
--- a/gnu/system/installer/network.scm
+++ b/gnu/system/installer/network.scm
@@ -51,7 +51,7 @@
`((name . ,ifce)
(class . ,(cond
((loopback-network-interface? ifce) 'loopback)
- ((string-prefix? ifce "wl") 'wireless)
+ ((string-prefix? "wl" ifce) 'wireless)
(else 'ethernet)))))
(all-network-interface-names)))