Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Open sidebar
dms3
go-dms3-cmds
Commits
c7a70324
Commit
c7a70324
authored
Apr 28, 2016
by
Dominic Della Valle
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix dot path parsing on Windows
License: MIT Signed-off-by:
Dominic Della Valle
<
ddvpublic@gmail.com
>
parent
bc77fae3
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
cli/parse.go
cli/parse.go
+2
-2
No files found.
cli/parse.go
View file @
c7a70324
...
...
@@ -405,8 +405,6 @@ const notRecursiveFmtStr = "'%s' is a directory, use the '-%s' flag to specify d
const
dirNotSupportedFmtStr
=
"Invalid path '%s', argument '%s' does not support directories"
func
appendFile
(
fpath
string
,
argDef
*
cmds
.
Argument
,
recursive
,
hidden
bool
)
(
files
.
File
,
error
)
{
fpath
=
filepath
.
ToSlash
(
filepath
.
Clean
(
fpath
))
if
fpath
==
"."
{
cwd
,
err
:=
os
.
Getwd
()
if
err
!=
nil
{
...
...
@@ -415,6 +413,8 @@ func appendFile(fpath string, argDef *cmds.Argument, recursive, hidden bool) (fi
fpath
=
cwd
}
fpath
=
filepath
.
ToSlash
(
filepath
.
Clean
(
fpath
))
stat
,
err
:=
os
.
Lstat
(
fpath
)
if
err
!=
nil
{
return
nil
,
err
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment