Skip to content

Commit

Permalink
feat(docs): regenerate docs
Browse files Browse the repository at this point in the history
Signed-off-by: jkoberg <jkoberg@owncloud.com>
  • Loading branch information
kobergj committed Oct 15, 2024
1 parent 6fec0fa commit 9f9a911
Show file tree
Hide file tree
Showing 3 changed files with 166 additions and 155 deletions.
4 changes: 2 additions & 2 deletions docs/helpers/configenvextractor.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,9 +71,9 @@ func runIntermediateCode(intermediateCodePath string) {
defaultDataPath := "/var/lib/ocis"
os.Setenv("OCIS_BASE_DATA_PATH", defaultDataPath)
os.Setenv("OCIS_CONFIG_DIR", defaultConfigPath)
out, err := exec.Command("go", "run", intermediateCodePath).Output()
out, err := exec.Command("go", "run", intermediateCodePath).CombinedOutput()
if err != nil {
log.Fatal(err)
log.Fatal(string(out), err)
}
fmt.Println(string(out))
}
Loading

0 comments on commit 9f9a911

Please sign in to comment.