Skip to content

Commit

Permalink
(fix) Remove form-engine-app (#1514)
Browse files Browse the repository at this point in the history
  • Loading branch information
ibacher authored Nov 29, 2023
1 parent c7f1251 commit 12cf6c6
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions e2e/support/github/run-e2e-docker-env.sh
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,7 @@ script_dir=$( cd -- "$( dirname -- "${BASH_SOURCE[0]}" )" &> /dev/null && pwd )
# create a temporary working directory
working_dir=$(mktemp -d "${TMPDIR:-/tmp/}openmrs-e2e-frontends.XXXXXXXXXX")
# get a list of all the apps in this workspace
apps=$(yarn workspaces list --json | jq -r 'if ((.location == ".") or (.location | test("-app") | not)) then halt else .name end')

# Remove "esm-form-engine-app" from the list
apps=$(echo "$apps" | grep -v "esm-form-engine-app")

apps=$(yarn workspaces list --json | jq -r 'if ((.location == ".") or (.location | test("form-engine-app")) or (.location | test("-app") | not)) then halt else .name end')
# this array will hold all of the packed app names
app_names=()

Expand Down

0 comments on commit 12cf6c6

Please sign in to comment.