From 3c9f4bf64c997634cb09e96a94f3f6a77da3e69e Mon Sep 17 00:00:00 2001 From: Kanad Gupta Date: Fri, 19 Aug 2022 12:33:53 -0500 Subject: [PATCH] docs: fix `npx` usage Since we recommend Node v14 in our docs, it ships with npx@6 which experiences weirdness with the `-y` option. Since it's being run in a CI environment, the `-y` option shouldn't be required anyways. --- documentation/rdme.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/documentation/rdme.md b/documentation/rdme.md index e8bcdd00d..a9506cc16 100644 --- a/documentation/rdme.md +++ b/documentation/rdme.md @@ -253,7 +253,7 @@ To use a GitHub secret in your `rdme` GitHub Action, first [create a new reposit ## Usage in Other CI Environments -Since `rdme` is a command-line tool at its core, you can use `rdme` to sync your documentation from virtually any CI/CD environment that runs shell commands—[Bitbucket Pipelines](https://support.atlassian.com/bitbucket-cloud/docs/get-started-with-bitbucket-pipelines/), [GitLab CI/CD](https://docs.gitlab.com/ee/ci/), you name it! You can do this by invoking `rdme` with `npx -y rdme@RDME_VERSION` in a Node.js environment. See below for several examples. +Since `rdme` is a command-line tool at its core, you can use `rdme` to sync your documentation from virtually any CI/CD environment that runs shell commands—[Bitbucket Pipelines](https://support.atlassian.com/bitbucket-cloud/docs/get-started-with-bitbucket-pipelines/), [GitLab CI/CD](https://docs.gitlab.com/ee/ci/), you name it! You can do this by invoking `rdme` with `npx rdme@RDME_VERSION` in a Node.js environment. See below for several examples.