Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions cloudbuild/README.rst
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ Mac/Linux
pip install virtualenv
virtualenv <your-env>
source <your-env>/bin/activate
<your-env>/bin/pip install google-cloud-build
<your-env>/bin/pip install google-cloud-cloudbuild


Windows
Expand All @@ -59,7 +59,7 @@ Windows
pip install virtualenv
virtualenv <your-env>
<your-env>\Scripts\activate
<your-env>\Scripts\pip.exe install google-cloud-build
<your-env>\Scripts\pip.exe install google-cloud-cloudbuild

Next Steps
~~~~~~~~~~
Expand Down
24 changes: 15 additions & 9 deletions cloudbuild/docs/conf.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# -*- coding: utf-8 -*-
#
# google-cloud-build documentation build configuration file
# google-cloud-cloudbuild documentation build configuration file
#
# This file is execfile()d with the current directory set to its
# containing dir.
Expand Down Expand Up @@ -65,7 +65,7 @@
master_doc = "index"

# General information about the project.
project = u"google-cloud-build"
project = u"google-cloud-cloudbuild"
copyright = u"2017, Google"
author = u"Google APIs"

Expand Down Expand Up @@ -227,7 +227,7 @@
# html_search_scorer = 'scorer.js'

# Output file base name for HTML help builder.
htmlhelp_basename = "google-cloud-build-doc"
htmlhelp_basename = "google-cloud-cloudbuild-doc"

# -- Options for warnings ------------------------------------------------------

Expand Down Expand Up @@ -260,8 +260,8 @@
latex_documents = [
(
master_doc,
"google-cloud-build.tex",
u"google-cloud-build Documentation",
"google-cloud-cloudbuild.tex",
u"google-cloud-cloudbuild Documentation",
author,
"manual",
)
Expand Down Expand Up @@ -293,7 +293,13 @@
# One entry per manual page. List of tuples
# (source start file, name, description, authors, manual section).
man_pages = [
(master_doc, "google-cloud-build", u"google-cloud-build Documentation", [author], 1)
(
master_doc,
"google-cloud-cloudbuild",
u"google-cloud-cloudbuild Documentation",
[author],
1,
)
]

# If true, show URL addresses after external links.
Expand All @@ -308,10 +314,10 @@
texinfo_documents = [
(
master_doc,
"google-cloud-build",
u"google-cloud-build Documentation",
"google-cloud-cloudbuild",
u"google-cloud-cloudbuild Documentation",
author,
"google-cloud-build",
"google-cloud-cloudbuild",
"GAPIC library for the {metadata.shortName} v1 service",
"APIs",
)
Expand Down
Loading