We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
Autobuild
1 parent 65c654e commit 38e1065Copy full SHA for 38e1065
go/extractor/autobuilder/autobuilder.go
@@ -94,6 +94,8 @@ var BuildScripts = []BuildScript{
94
// Autobuild attempts to detect build systems based on the presence of build scripts from the
95
// list in `BuildScripts` and run the corresponding command. This may invoke zero or more
96
// build scripts in the order given by `BuildScripts`.
97
+// Returns `scriptSuccess` which indicates whether a build script was successfully executed.
98
+// Returns `scriptsExecuted` which contains the names of all build scripts that were executed.
99
func Autobuild() (scriptSuccess bool, scriptsExecuted []string) {
100
scriptSuccess = false
101
scriptsExecuted = []string{}
0 commit comments