Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
A
arduino-cli
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Operations
Operations
Metrics
Analytics
Analytics
Repository
Value Stream
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Commits
Open sidebar
xpstem
arduino-cli
Commits
6516e747
Commit
6516e747
authored
Aug 07, 2018
by
Cristian Maglie
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed lint warning
parent
bc549cdd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
arduino/cores/packageindex/index.go
arduino/cores/packageindex/index.go
+3
-3
No files found.
arduino/cores/packageindex/index.go
View file @
6516e747
...
...
@@ -152,10 +152,10 @@ func (inPlatformRelease indexPlatformRelease) extractPlatformIn(outPackage *core
CachePath
:
"packages"
,
}
outPlatformRelease
.
BoardsManifest
=
inPlatformRelease
.
extractBoardsManifest
()
if
deps
,
err
:=
inPlatformRelease
.
extractDeps
();
err
!=
nil
{
return
fmt
.
Errorf
(
"invalid tool dependencies: %s"
,
err
)
}
else
{
if
deps
,
err
:=
inPlatformRelease
.
extractDeps
();
err
==
nil
{
outPlatformRelease
.
Dependencies
=
deps
}
else
{
return
fmt
.
Errorf
(
"invalid tool dependencies: %s"
,
err
)
}
return
nil
}
...
...
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