Add check to Makefile to abort in a Windows environment (neither i3 nor unix sockets available)
Hopefully, this will stop CPAN Testers emails about failing tests on windows.
This commit is contained in:
@ -9,4 +9,8 @@ requires 'AnyEvent::Handle';
|
||||
requires 'AnyEvent::Socket';
|
||||
requires 'JSON::XS';
|
||||
|
||||
if ($^O eq 'MSWin32') {
|
||||
die "AnyEvent::I3 cannot be used on win32 (unix sockets are missing)";
|
||||
}
|
||||
|
||||
WriteAll;
|
||||
|
Reference in New Issue
Block a user