hover: 0.46.2 -> 0.46.3

Also fix `hover init` command failing with the following error:

```
hover: Failed to find template file: open app/hover.yaml.tmpl/app/hover.yaml.tmpl: no such file or directory
```
This commit is contained in:
Thiago Kenji Okada
2021-03-31 21:25:44 -03:00
parent 91936abbdd
commit 4e91ced01e
2 changed files with 4 additions and 4 deletions

View File

@@ -53,7 +53,7 @@ index cb75563..3822e80 100644
-func ExecuteTemplateFromAssetsBox(boxed, to string, assetsBox *rice.Box, templateData interface{}) {
- templateString, err := assetsBox.String(boxed)
+func ExecuteTemplateFromAssetsBox(boxed, to string, assetsBox string, templateData interface{}) {
+ templateString, err := ioutil.ReadFile(boxed + "/" + boxed)
+ templateString, err := ioutil.ReadFile(assetsBox + "/" + boxed)
if err != nil {
log.Errorf("Failed to find template file: %v\n", err)
os.Exit(1)