From c17bf13f8cdc01ac611cdc66200d1d00b7d902b3 Mon Sep 17 00:00:00 2001 From: Maidul Islam Date: Sun, 26 Feb 2023 19:32:33 -0500 Subject: [PATCH] remove sudo for alpine --- docs/cli/overview.mdx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/cli/overview.mdx b/docs/cli/overview.mdx index 47de44e01..8934d8e07 100644 --- a/docs/cli/overview.mdx +++ b/docs/cli/overview.mdx @@ -45,19 +45,19 @@ The Infisical CLI provides a way to inject environment variables from the platfo Install prerequisite ```bash - sudo apk add --no-cache bash sudo + apk add --no-cache bash sudo ``` Add Infisical repository ```bash curl -1sLf \ 'https://dl.cloudsmith.io/public/infisical/infisical-cli/setup.alpine.sh' \ - | sudo -E bash + | bash ``` Then install CLI ```bash - sudo apk update && sudo apk add infisical + apk update && sudo apk add infisical ```