Thanks to visit codestin.com
Credit goes to github.com

Skip to content
This repository was archived by the owner on Aug 30, 2024. It is now read-only.

Commit 98fab6e

Browse files
committed
fixup! Handle single file sync
1 parent 988e21e commit 98fab6e

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

internal/cmd/sync.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,7 +77,8 @@ func makeRunSync(init *bool) func(cmd *cobra.Command, args []string) error {
7777
}
7878
if info.Mode().IsRegular() {
7979
return sync.SingleFile(ctx, local, remoteDir, env, client)
80-
} else if !info.IsDir() {
80+
}
81+
if !info.IsDir() {
8182
return xerrors.Errorf("local path must lead to a regular file or directory: %w", err)
8283
}
8384

0 commit comments

Comments
 (0)