You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Previously it was only possible to vendor from a github release or a local
directory. This commit adds the ability to vendor from a custom github repo
and git reference (branch, commit SHA)
Copy file name to clipboardExpand all lines: README_BUILD.md
+15-1Lines changed: 15 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,21 @@ By default the extension will use the specified released version of the Puppet E
41
41
}
42
42
```
43
43
44
-
To use a local directory that contains the Puppet Editor services, use the directory configuration setting; for example if the the editor services was located in `C:\puppet-editor-services` use the following;
44
+
To use a specific GitHub repository that contains the Puppet Editor services, use the `githubref` configuration setting; for example to use the `puppet-editing` repository, owned by `Alice` with the `testing` branch
45
+
46
+
```json
47
+
{
48
+
"githubuser": "Alice",
49
+
"githubrepo": "puppet-editing",
50
+
"githubref": "testing"
51
+
}
52
+
```
53
+
54
+
Note - By default the githubuser is `lingua-pupuli` and the githubrepo is `puppet-editor-services`
55
+
56
+
Note - Use the full length commit SHA for `githubref`, not the abbreviated eight character SHA
57
+
58
+
To use a local directory that contains the Puppet Editor services, use the `directory` configuration setting; for example if the the editor services was located in `C:\puppet-editor-services` use the following;
0 commit comments