-
Notifications
You must be signed in to change notification settings - Fork 45
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve DevDocs #32
Improve DevDocs #32
Conversation
@@ -0,0 +1,6 @@ | |||
#!/bin/sh |
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.
I've written a installing script at "scripts/install.gs" which can be executed with gosl
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.
Ah! I've googled for gosl but only the Go Scientific Lib came up
@@ -18,6 +18,16 @@ if *goGet { | |||
Printfln("go get -u -v %s/%s", GCSE, a) | |||
MustSucc(Bash("go get -u -v %s/%s", GCSE, a)) | |||
} | |||
|
|||
additionalPackages := []string{ |
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.
why this is necessary? Won't previous go get automatically get these dependencies?
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.
Nope, when I tested this morning:
- go test (called later in
install.gs
) complained about missinggithub.aaakk.us.kg/golangplus/testing/assert
- crawler complained about
fmt
andheap
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.
This is weird and getting the dependencies explicitly seems not an optimal solution. I'll have a test later.
see #3