From c89317627da6741213c249c10b047240edb0cf8e Mon Sep 17 00:00:00 2001 From: filip mertens Date: Fri, 12 Nov 2021 17:35:07 +0100 Subject: [PATCH] pyfile --- apps/remix-ide/ci/lint.sh | 2 ++ apps/remix-ide/ci/parse_workspace.py | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) mode change 100644 => 100755 apps/remix-ide/ci/parse_workspace.py diff --git a/apps/remix-ide/ci/lint.sh b/apps/remix-ide/ci/lint.sh index 34340671ab..e819c79c90 100755 --- a/apps/remix-ide/ci/lint.sh +++ b/apps/remix-ide/ci/lint.sh @@ -6,6 +6,8 @@ BUILD_ID=${CIRCLE_BUILD_NUM:-${TRAVIS_JOB_NUMBER}} echo "$BUILD_ID" TEST_EXITCODE=0 +python parse_workspace.py + npm run lint || TEST_EXITCODE=1 npm run lint:libs || TEST_EXITCODE=1 npm run lint remix-ide-e2e || TEST_EXITCODE=1 diff --git a/apps/remix-ide/ci/parse_workspace.py b/apps/remix-ide/ci/parse_workspace.py old mode 100644 new mode 100755 index 8da5d08d67..e54359cdfc --- a/apps/remix-ide/ci/parse_workspace.py +++ b/apps/remix-ide/ci/parse_workspace.py @@ -6,4 +6,4 @@ with open('../../../workspace.json') as f: for key in data['projects']: if(data['projects'][key]['architect']['lint']): - print('nx run %s:lint' % key) \ No newline at end of file + print('%s:lint' % key) \ No newline at end of file