From 57a745bfd9c719382ecc2435bd055e022e3ef5df Mon Sep 17 00:00:00 2001 From: Darin Kelkhoff Date: Tue, 15 Nov 2022 19:07:26 -0600 Subject: [PATCH] Fix writing of npmrc file --- .circleci/config.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index 15dcbbe..282fc9c 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -12,7 +12,7 @@ jobs: name: write npmrc command: | echo "@kingsrook:registry=https://npm.pkg.github.com/" >> .npmrc - echo "NPM_TOKEN=${NPM_TOKEN}"" >> .npmrc + echo "NPM_TOKEN=${NPM_TOKEN}" >> .npmrc echo "@OWNER:registry=https://npm.pkg.github.com/" >> .npmrc echo "//npm.pkg.github.com/:_authToken=${NPM_TOKEN}" >> .npmrc cat .npmrc