-
Notifications
You must be signed in to change notification settings - Fork 1k
Conversation
return m, nil, nil | ||
} | ||
|
||
func (a analyzer) Info() (name string, version *semver.Version) { | ||
v, _ := semver.NewVersion("v0.0.1") | ||
return "hoard", v | ||
return "deb", v |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's 'dep' not 'deb'.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Oops, yep. Fixed.
func (a analyzer) DeriveManifestAndLock(path string, n gps.ProjectRoot) (gps.Manifest, gps.Lock, error) { | ||
// TODO: If we decide to support other tools manifest, this is where we would need |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
The commit description should also mention that you've adjusted some comments.
Thanks - we need to do this (doh that we forgot to do it before), but it's going to have the unfortunate side effect of changing all the memos in the tests. Nothing to do about that except copy the results from the actual output to the wanted output. |
Memos and other comments are fixed, PTAL. |
I suspect the appveyor error was probably due to what's fixed in #157 |
issue subject? |
No prob. |
i hear that closing and reopening might kick the checks...let's see if it does. |
ding ding ding! |
Introduce monitoredCmd
The change also includes minor style fixes for some comments.