This commit is contained in:
Josh Yan
2024-07-05 15:44:49 -07:00
parent bc3f59a6ad
commit 79cc4c9585
2 changed files with 9 additions and 6 deletions

View File

@@ -1,5 +1,7 @@
package cmd
import "errors"
func localCopy(src, target string) error {
return defaultCopy(src, target)
return errors.New("no local copy implementation for linux")
}