From 4ce8b118ef8399aa1ed4825a50afcdd0e60cfa99 Mon Sep 17 00:00:00 2001 From: Daniel Roe Date: Fri, 17 Mar 2023 15:39:50 +0000 Subject: [PATCH] =?UTF-8?q?chore:=20reenable=20publishing=20=F0=9F=99=88?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- scripts/release-publish | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/release-publish b/scripts/release-publish index d892f8cd4a6b..8f32c0366f66 100755 --- a/scripts/release-publish +++ b/scripts/release-publish @@ -13,9 +13,9 @@ for dir in packages/* distributions/* ; do pushd $dir > /dev/null # if package is nuxt then publish with tag 2x if [ "$dir" = "distributions/nuxt" ]; then - echo npm publish --tag 2x -q + npm publish --tag 2x -q else - echo npm publish -q + npm publish -q fi popd > /dev/null done