From 082376cbc35e8cd900986d779f30a53132e3c750 Mon Sep 17 00:00:00 2001 From: Evan Mullins Date: Thu, 14 Dec 2023 12:54:44 -0500 Subject: [PATCH] fix quotation nesting --- .github/workflows/module-plugin-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/module-plugin-test.yml b/.github/workflows/module-plugin-test.yml index f1348c2..8fa3abd 100644 --- a/.github/workflows/module-plugin-test.yml +++ b/.github/workflows/module-plugin-test.yml @@ -127,7 +127,7 @@ jobs: working-directory: ./vendor/${{ inputs.module-repo }} shell: bash run: | - echo "hasPackageJson=`test -f vendor/${{ inputs.module-repo }}/package.json` >> $GITHUB_OUTPUT + echo "hasPackageJson=`test -f vendor/${{ inputs.module-repo }}/package.json`" >> $GITHUB_OUTPUT - name: Check Module for build script id: build @@ -135,7 +135,7 @@ jobs: if: ${{ steps.workflow.outputs.hasPackageJson }} shell: bash run: | - echo "hasBuildCommand=`grep -wq '"build":' vendor/${{ inputs.module-repo }}/package.json"` >> $GITHUB_OUTPUT + echo "hasBuildCommand=`grep -wq '"build":' vendor/${{ inputs.module-repo }}/package.json`" >> $GITHUB_OUTPUT - name: Setup Registry for Module working-directory: ./vendor/${{ inputs.module-repo }}