From 3fcc7b4c6e3a7cde7a246f8196ea5af88138ae4d Mon Sep 17 00:00:00 2001 From: Riccardo Biraghi Date: Tue, 10 Apr 2018 13:42:44 +0100 Subject: [PATCH] Return nil in checkFS --- cmd/runmqserver/mqconfig_other.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cmd/runmqserver/mqconfig_other.go b/cmd/runmqserver/mqconfig_other.go index 60c0854..0c4c233 100644 --- a/cmd/runmqserver/mqconfig_other.go +++ b/cmd/runmqserver/mqconfig_other.go @@ -20,5 +20,5 @@ package main // Dummy version of this function, only for non-Linux systems. // Having this allows unit tests to be run on other platforms (e.g. macOS) func checkFS(path string) error { - return + return nil }