// MsgSyncReq: copy files to the remote host; Windows compatibility // SPDX-License-Identifier: GPL-3.0-or-later // Copyright (C) 2021-2024 Simon Ruderich package sync import ( "fmt" "os" ) // Windows remote hosts are not supported. However, the local safcm binary // imports safcm-remote which fails to build with the regular files.go. func (s *Sync) syncFiles() error { return fmt.Errorf("not implemented on Windows") } func OpenFileNoSymlinks(path string) (*os.File, error) { return nil, fmt.Errorf("not implemented on Windows") }