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
Commits
e6c5fc25
Commit
e6c5fc25
authored
10 years ago
by
Brian Tiger Chow
Committed by
Juan Batiz-Benet
10 years ago
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
docs(commands) todo
License: MIT Signed-off-by:
Brian Tiger Chow
<
brian@perfmode.com
>
parent
56250049
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
commands/cli/parse.go
commands/cli/parse.go
+4
-1
No files found.
commands/cli/parse.go
View file @
e6c5fc25
...
...
@@ -160,7 +160,10 @@ func argValue(argDef cmds.Argument, value string) (interface{}, error) {
return
value
,
nil
}
else
{
in
,
err
:=
os
.
Open
(
value
)
// FIXME(btc) must close file. fix before merge
// NB At the time of this commit, file cleanup is performed when
// Requests are cleaned up. TODO try to perform open and close at the
// same level of abstraction (or at least in the same package!)
in
,
err
:=
os
.
Open
(
value
)
if
err
!=
nil
{
return
nil
,
err
}
...
...
This diff is collapsed.
Click to expand it.
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