-
Notifications
You must be signed in to change notification settings - Fork 80
Fix some files not being included in windows-msi #176
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -13,14 +13,12 @@ var hoverYaml string | |
|
|
||
| // GetHoverFlavorYaml returns the Hover yaml file | ||
| func GetHoverFlavorYaml() string { | ||
| if len(hoverYaml) == 0 { | ||
| hoverYaml = "hover.yaml" | ||
| } | ||
| return hoverYaml | ||
| } | ||
|
|
||
| // SetDefaultFlavorFile sets the default hover.yaml | ||
| func SetDefaultHoverYamlFile() { | ||
| hoverYaml = "hover.yaml" | ||
| } | ||
|
|
||
|
Comment on lines
+16
to
-23
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. These changes were needed, because the config needed to be loaded for
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Makes, sense. I was not aware that
Member
Author
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Strings are never nil they are just empty |
||
| // SetHoverFlavor sets the user defined hover flavor. | ||
| // eg. hover-develop.yaml, hover-staging.yaml, etc. | ||
| func SetHoverFlavor(flavor string) { | ||
|
|
||
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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.
See other comment