Skip to content

Commit

Permalink
fix: Use docs.meltano.com instead of meltano.com/docs (meltano#6636)
Browse files Browse the repository at this point in the history
  • Loading branch information
WillDaSilva committed Aug 17, 2022
1 parent 004ce90 commit 6de7c10
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 8 deletions.
4 changes: 2 additions & 2 deletions src/meltano/cli/cli.py
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ def cli( # noqa: WPS231
"""
ELT for the DataOps era.
\b\nRead more at https://www.meltano.com/docs/command-line-interface.html
\b\nRead more at https://docs.meltano.com/reference/command-line-interface
"""
ctx.ensure_object(dict)

Expand Down Expand Up @@ -120,6 +120,6 @@ def cli( # noqa: WPS231
fg="yellow",
)
click.echo(
"For more details, visit http://meltano.com/docs/installation.html#upgrading-meltano-version"
"For more details, visit https://docs.meltano.com/guide/installation#upgrading-meltano-version"
)
sys.exit(3)
2 changes: 1 addition & 1 deletion src/meltano/cli/install.py
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ def install(
"""
Install all the dependencies of your project based on the meltano.yml file.
\b\nRead more at https://www.meltano.com/docs/command-line-interface.html#install
\b\nRead more at https://docs.meltano.com/reference/command-line-interface#install
"""
tracker: Tracker = ctx.obj["tracker"]

Expand Down
3 changes: 2 additions & 1 deletion src/meltano/cli/ui.py
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,8 @@ def ensure_secure_setup(project: Project):
for fact in facts:
click.echo(fact)
click.echo(
"For more information about these settings and how to set them, visit https://www.meltano.com/docs/settings.html#ui-authentication"
"For more information about these settings and how to set them, visit "
"https://docs.meltano.com/reference/settings#uiauthentication"
)
click.echo()

Expand Down
4 changes: 2 additions & 2 deletions src/meltano/cli/utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -341,7 +341,7 @@ def add_plugin(
click.echo(f"\tmeltano config {plugin.name} list")
click.echo()
click.echo(
"To learn more, visit https://www.meltano.com/docs/plugin-management.html#switching-from-one-variant-to-another"
"To learn more, visit https://docs.meltano.com/guide/plugin-management#switching-from-one-variant-to-another"
)

click.echo()
Expand All @@ -359,7 +359,7 @@ def add_plugin(

click.echo()
click.echo(
"To learn more, visit https://www.meltano.com/docs/plugin-management.html#multiple-variants"
"To learn more, visit https://docs.meltano.com/guide/plugin-management#multiple-variants"
)
else:
click.echo(
Expand Down
2 changes: 1 addition & 1 deletion src/meltano/core/plugin_discovery_service.py
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class DiscoveryUnavailableError(Exception):


# Increment this version number whenever the schema of discovery.yml is changed.
# See https://www.meltano.com/docs/contributor-guide.html#discovery-yml-version for more information.
# See https://docs.meltano.com/contribute/plugins#discoveryyml-version for more information.
VERSION = 22


Expand Down
2 changes: 1 addition & 1 deletion src/webapp/src/utils/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ export default {
docsUrl(path = '/', fragment) {
fragment = fragment ? `#${fragment}` : ''

return `https://meltano.com/docs${path}.html${fragment}`
return `https://docs.meltano.com/${path}${fragment}`
},

downloadBlobAsFile(blob, fileName) {
Expand Down

0 comments on commit 6de7c10

Please sign in to comment.