From fb3778abb6f19c1cb2e142049671994081b508c7 Mon Sep 17 00:00:00 2001 From: Klaus Post Date: Fri, 14 Aug 2015 15:33:11 +0200 Subject: [PATCH] Disable mount command on Windows. FUSE does not support Windows, so we disable it on Windows. --- cmd/restic/cmd_mount.go | 1 + 1 file changed, 1 insertion(+) diff --git a/cmd/restic/cmd_mount.go b/cmd/restic/cmd_mount.go index dc2ad673d..b8d8cb277 100644 --- a/cmd/restic/cmd_mount.go +++ b/cmd/restic/cmd_mount.go @@ -1,4 +1,5 @@ // +build !openbsd +// +build !windows package main