From 8f7d4d00d3e6aff39d56270c1b6c2efd87eb515c Mon Sep 17 00:00:00 2001 From: BoykoAlex Date: Fri, 15 Mar 2019 20:09:46 -0400 Subject: [PATCH] PT #164169543: Correct yarn publish cmd --- concourse/tasks/publish-theia-releases.sh | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/concourse/tasks/publish-theia-releases.sh b/concourse/tasks/publish-theia-releases.sh index a983a11a2..9f556c75a 100755 --- a/concourse/tasks/publish-theia-releases.sh +++ b/concourse/tasks/publish-theia-releases.sh @@ -12,9 +12,9 @@ do echo "" echo "We are running the following command:" echo "" - echo " npm publish $theia_tgz_file --access public" + echo " yarn publish ${theia_tgz_file} --access public" echo "" - yarn publish $theia_tgz_file --access public + yarn publish ${theia_tgz_file} --access public done