From c724d543774300e3e2423a7600d3acb152db206c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Edgar=20Ram=C3=ADrez=20Mondrag=C3=B3n?= <16805946+edgarrmondragon@users.noreply.github.com> Date: Fri, 11 Oct 2024 17:29:48 -0600 Subject: [PATCH] docs: Update Meltano commands in examples (#2717) --- docs/cli_commands.md | 2 +- samples/sample_tap_dummy_json/README.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/cli_commands.md b/docs/cli_commands.md index d12d245f8..e5d37f551 100644 --- a/docs/cli_commands.md +++ b/docs/cli_commands.md @@ -180,7 +180,7 @@ plugins: | Configuration store | Config JSON file (`--config=path/to/config.json`) or environment variables (`--config=ENV`) | `meltano.yml`, `.env`, environment variables, or Meltano's system db | | Simple invocation | `my-tap --config=...` | `meltano invoke my-tap` | | Other CLI options | `my-tap --about --format=json` | `meltano invoke my-tap --about --format=json` | -| ELT | `my-tap --config=... \| path/to/target-jsonl --config=...` | `meltano elt my-tap target-jsonl` | +| ELT | `my-tap --config=... \| path/to/target-jsonl --config=...` | `meltano run my-tap target-jsonl` | [Meltano]: https://www.meltano.com [declare settings]: https://docs.meltano.com/reference/command-line-interface#how-to-use-2 diff --git a/samples/sample_tap_dummy_json/README.md b/samples/sample_tap_dummy_json/README.md index e154663d9..92ff0cbe4 100644 --- a/samples/sample_tap_dummy_json/README.md +++ b/samples/sample_tap_dummy_json/README.md @@ -122,7 +122,7 @@ Now you can test and orchestrate using Meltano: # Test invocation: meltano invoke tap-dummyjson --version # OR run a test `elt` pipeline: -meltano elt tap-dummyjson target-jsonl +meltano run tap-dummyjson target-jsonl ``` ### SDK Dev Guide