From 6f023f46d8f732129f8d11b29f136d1b8d7d87dc Mon Sep 17 00:00:00 2001 From: shreyas-goenka <88374338+shreyas-goenka@users.noreply.github.com> Date: Thu, 6 Jul 2023 13:16:14 +0200 Subject: [PATCH] Update cp help message to not require file scheme (#554) ## Tests Manually --------- Co-authored-by: Pieter Noordhuis --- cmd/fs/cp.go | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/cmd/fs/cp.go b/cmd/fs/cp.go index 399a1aea..204d6c33 100644 --- a/cmd/fs/cp.go +++ b/cmd/fs/cp.go @@ -132,8 +132,8 @@ var cpCmd = &cobra.Command{ Short: "Copy files and directories to and from DBFS.", Long: `Copy files to and from DBFS. - It is required that you specify the scheme "file" for local files and - "dbfs" for dbfs files. For example: file:/foo/bar, file:/c:/foo/bar or dbfs:/foo/bar. + For paths in DBFS it is required that you specify the "dbfs" scheme. + For example: dbfs:/foo/bar. Recursively copying a directory will copy all files inside directory at SOURCE_PATH to the directory at TARGET_PATH.