From d8069f9101496b3e7418cd9ddd7c7b322de6f8e8 Mon Sep 17 00:00:00 2001 From: Alireza Date: Tue, 6 Jun 2023 14:25:53 -0400 Subject: [PATCH] chore(build): call script from current directory (#3442) --- .circleci/config.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.circleci/config.yml b/.circleci/config.yml index fe1c3a805..3844604b4 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -159,7 +159,7 @@ jobs: # Build & Test - run: name: 'Perform the versioning before build' - command: node ../version.mjs + command: node ./version.mjs - run: name: 'Build the OHIF Viewer' command: yarn run build @@ -279,7 +279,7 @@ jobs: - run: name: Increase the event emitter limit command: | - node ../increaseEventEmitterLimit.mjs + node ./increaseEventEmitterLimit.mjs - run: name: build all packages command: | @@ -287,7 +287,7 @@ jobs: - run: name: version and publish all packages command: | - node ../publish.mjs + node ./publish.mjs DOCKER_RELEASE_PUBLISH: <<: *defaults